:root {
  --color-black: #0E0E0E;
  --color-black-soft: #1A1A1A;
  --color-ivory: #F5F0E8;
  --color-cream: #FAF7F0;
  --color-white: #FFFFFF;
  --color-gold: #C9A84C;
  --color-gold-dark: #A9822B;
  --color-anthracite: #666666;
  --color-text: #1A1A1A;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', Arial, sans-serif;
  --shadow-soft: 0 18px 46px rgba(14, 14, 14, 0.08);
  --shadow-premium: 0 28px 80px rgba(14, 14, 14, 0.13);
  --shadow-dark: 0 24px 72px rgba(0, 0, 0, 0.32);
  --border-gold: 1px solid rgba(201, 168, 76, 0.34);
  --border-soft: 1px solid rgba(26, 26, 26, 0.08);
  --transition: 220ms ease;
}

html {
  overflow-x: clip;
  scroll-behavior: smooth;
  scroll-padding-top: 86px;
}

body {
  overflow-x: clip;
  margin: 0;
  background: var(--color-cream);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition), border-color var(--transition), background var(--transition), transform var(--transition), box-shadow var(--transition);
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
  color: inherit;
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  font-size: clamp(3.35rem, 6.1vw, 5.9rem);
}

h2 {
  font-size: clamp(2.05rem, 3.2vw, 3.2rem);
}

h3 {
  font-size: 1.42rem;
}

p {
  color: var(--color-anthracite);
}

.container {
  max-width: 1220px;
}

.site-header .container,
.hero-section .container,
.stats-band .container {
  max-width: 1370px;
}

.section {
  padding: 112px 0;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 46px;
}

.section-heading h2 {
  font-size: clamp(1.7rem, 2.2vw, 2.2rem);
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--color-gold-dark);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

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

.section-eyebrow::before {
  width: 36px;
  height: 1px;
  background: currentColor;
  content: '';
}

.gold-divider {
  display: block;
  width: 64px;
  height: 2px;
  margin: 18px auto 0;
  background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
}

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

.section-ivory {
  background:
    radial-gradient(circle at top left, rgba(201, 168, 76, 0.12), transparent 32%),
    var(--color-ivory);
}

#offres.section-ivory {
  background:
    radial-gradient(circle at top center, rgba(201, 168, 76, 0.08), transparent 34%),
    var(--color-cream);
}

#offres.section {
  padding: 46px 0 38px;
}

.section-dark {
  background:
    linear-gradient(135deg, rgba(201, 168, 76, 0.08), transparent 32%),
    linear-gradient(0deg, rgba(255, 255, 255, 0.02), transparent),
    var(--color-black);
  color: var(--color-cream);
}

.section-dark p {
  color: rgba(250, 247, 240, 0.74);
}

.site-header {
  background: rgba(10, 10, 10, 0.98);
  border-bottom: 1px solid rgba(201, 168, 76, 0.24);
  backdrop-filter: blur(18px);
  transition: background var(--transition), box-shadow var(--transition);
}

.site-header.is-scrolled {
  background: rgba(14, 14, 14, 0.98);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.26);
}

.navbar {
  min-height: 70px;
  padding: 0;
}

.brand-signature,
.footer-brand {
  color: var(--color-cream);
  font-family: var(--font-heading);
  font-size: 1.72rem;
  font-weight: 700;
  letter-spacing: 0.09em;
}

.brand-signature {
  display: inline-flex;
  align-items: center;
  width: 166px;
  max-width: 38vw;
  padding: 0;
}

.brand-signature img {
  width: 100%;
  height: auto;
}

.brand-signature:hover,
.footer-brand:hover {
  color: var(--color-gold);
}

.navbar-dark .navbar-nav .nav-link {
  padding: 0.75rem 0.86rem;
  color: rgba(250, 247, 240, 0.78);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
  color: var(--color-gold);
}

.navbar-toggler {
  border-color: rgba(201, 168, 76, 0.38);
  border-radius: 6px;
}

.btn-header-cta {
  min-height: 40px;
  padding: 0.62rem 1.05rem;
  border: 1px solid rgba(201, 168, 76, 0.58);
  border-radius: 5px;
  background: rgba(201, 168, 76, 0.05);
  color: var(--color-gold);
  box-shadow: inset 0 0 0 1px rgba(201, 168, 76, 0.12);
}

.btn-header-cta:hover {
  background: var(--color-gold);
  color: var(--color-black);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0.82rem 1.35rem;
  border-radius: 999px;
  font-size: 0.93rem;
  font-weight: 800;
  line-height: 1.1;
}

.btn-gold {
  border: 1px solid var(--color-gold);
  background: linear-gradient(135deg, var(--color-gold), var(--color-gold-dark));
  color: var(--color-white);
  box-shadow: 0 14px 30px rgba(201, 168, 76, 0.24);
}

.btn-gold:hover {
  border-color: var(--color-gold);
  background: linear-gradient(135deg, #D8B85A, var(--color-gold-dark));
  color: var(--color-white);
  transform: translateY(-2px);
}

.btn-outline-gold {
  border: var(--border-gold);
  color: var(--color-gold);
}

.btn-outline-gold:hover {
  background: rgba(201, 168, 76, 0.1);
  color: var(--color-gold);
  transform: translateY(-2px);
}

.btn-outline-dark {
  border: 1px solid rgba(26, 26, 26, 0.18);
  background: transparent;
  color: var(--color-black-soft);
}

.btn-outline-dark:hover {
  border-color: var(--color-black-soft);
  background: var(--color-black-soft);
  color: var(--color-cream);
  transform: translateY(-2px);
}

.btn-dark-premium {
  border: 1px solid var(--color-black-soft);
  background: var(--color-black-soft);
  color: var(--color-cream);
}

.btn-dark-premium:hover {
  border-color: var(--color-gold-dark);
  background: var(--color-gold-dark);
  color: var(--color-white);
  transform: translateY(-2px);
}

.hero-section {
  position: relative;
  min-height: 760px;
  padding: 186px 0 118px;
  background:
    radial-gradient(ellipse at 36% 58%, rgba(250, 247, 240, 0.88) 0%, rgba(250, 247, 240, 0.52) 18%, rgba(250, 247, 240, 0) 34%),
    linear-gradient(90deg, rgba(250, 247, 240, 1) 0%, rgba(250, 247, 240, 1) 40%, rgba(250, 247, 240, 0.96) 46%, rgba(250, 247, 240, 0.58) 52%, rgba(250, 247, 240, 0.12) 58%, rgba(250, 247, 240, 0) 64%),
    url('../img/hero-img.png') right center / auto 100% no-repeat;
}

.hero-section .row {
  min-height: 456px;
}

.hero-section .col-lg-6:first-child {
  width: 46%;
}

.hero-section .col-lg-6:last-child {
  display: none;
}

.hero-section .section-eyebrow {
  margin-bottom: 14px;
  color: #6E7477;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
}

.hero-section .section-eyebrow::before {
  display: none;
}

.hero-section h1 {
  max-width: 610px;
  color: #121212;
  font-size: clamp(2.9rem, 3.25vw, 3.95rem);
  line-height: 1.11;
  text-transform: uppercase;
}

.hero-subtitle {
  max-width: 510px;
  margin-top: 20px;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.65;
  color: #3F4548;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.hero-actions .btn {
  min-width: 190px;
  border-radius: 4px;
}

.trust-note {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 20px 0 0;
  color: #6A6E70;
  font-size: 0.9rem;
  font-weight: 600;
}

.trust-note i {
  color: var(--color-gold-dark);
}

.image-frame {
  position: relative;
  overflow: hidden;
  border: var(--border-gold);
  border-radius: 8px;
  background: var(--color-black);
  box-shadow: var(--shadow-premium);
}

.hero-image-frame {
  aspect-ratio: 900 / 720;
}

.about-image-frame {
  aspect-ratio: 760 / 520;
  box-shadow: var(--shadow-dark);
}

.image-frame img,
.image-fallback {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-fallback {
  display: grid;
  min-height: inherit;
  place-items: center;
  padding: 28px;
  background:
    linear-gradient(145deg, rgba(201, 168, 76, 0.2), rgba(250, 247, 240, 0.08)),
    radial-gradient(circle at top right, rgba(250, 247, 240, 0.16), transparent 32%),
    var(--color-black);
  color: rgba(250, 247, 240, 0.72);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-align: center;
}

.stats-band {
  padding: 28px 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.02), transparent 24%, rgba(201, 168, 76, 0.06) 50%, transparent 76%),
    var(--color-black);
}

.stat-item {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  align-items: center;
  justify-content: center;
  column-gap: 20px;
  row-gap: 12px;
  min-height: 82px;
  padding: 10px 34px;
  text-align: left;
}

.stats-band [class*='col-']:not(:last-child) .stat-item {
  border-right: 1px solid rgba(250, 247, 240, 0.12);
}

.stat-item i {
  grid-row: 1 / span 2;
  color: var(--color-gold);
  font-size: 2.8rem;
  line-height: 1;
}

.stat-item strong {
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: 2.25rem;
  line-height: 1;
}

.stat-item .stat-word {
  font-family: var(--font-body);
  font-size: 1.25rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  line-height: 1.18;
  text-transform: uppercase;
}

.stat-item span {
  color: rgba(250, 247, 240, 0.68);
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.55;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: var(--border-soft);
  background: rgba(255, 255, 255, 0.42);
  box-shadow: var(--shadow-soft);
}

.pillar-item {
  padding: 36px 28px;
  text-align: center;
}

.pillar-item:not(:last-child) {
  border-right: 1px solid rgba(26, 26, 26, 0.08);
}

.pillar-item i,
.offer-icon {
  display: inline-flex;
  margin-bottom: 20px;
  color: var(--color-gold-dark);
  font-size: 1.85rem;
}

.pillar-item h3,
.offer-card h3 {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.offer-card h3 {
  min-height: 22px;
  margin-bottom: 0;
}

.premium-card {
  height: 100%;
  padding: 34px;
  border: var(--border-soft);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: var(--shadow-soft);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.premium-card:hover {
  border-color: rgba(201, 168, 76, 0.58);
  box-shadow: 0 24px 62px rgba(14, 14, 14, 0.12);
  transform: translateY(-5px);
}

.offer-card {
  position: relative;
  display: grid;
  grid-template-rows: auto auto minmax(118px, auto) minmax(44px, auto) minmax(178px, 1fr) auto;
  align-items: center;
  min-height: 340px;
  padding: 24px 50px 20px;
  border: 1px solid rgba(26, 26, 26, 0.1);
  background: rgba(255, 255, 255, 0.56);
  text-align: center;
  box-shadow: 0 12px 32px rgba(14, 14, 14, 0.055);
}

.featured-offer {
  border-color: rgba(201, 168, 76, 0.86);
  background: rgba(255, 255, 255, 0.66);
  box-shadow: 0 16px 38px rgba(169, 130, 43, 0.1);
  transform: none;
}

.featured-offer:hover {
  transform: translateY(-5px);
}

.offer-badge {
  position: absolute;
  top: -13px;
  right: 50%;
  width: 210px;
  padding: 0.42rem 0.7rem;
  border-radius: 0;
  background: linear-gradient(135deg, var(--color-gold), var(--color-gold-dark));
  color: var(--color-white);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-align: center;
  text-transform: uppercase;
  transform: translateX(50%);
}

.offer-badge::after {
  position: absolute;
  top: 0;
  right: -14px;
  width: 0;
  height: 0;
  border-bottom: 13px solid var(--color-gold-dark);
  border-right: 14px solid transparent;
  content: '';
}

.offer-icon {
  display: grid;
  justify-self: center;
  width: 46px;
  height: 46px;
  place-items: center;
  margin: 13px 0 16px;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.09);
  color: var(--color-gold-dark);
  font-size: 1.55rem;
}

.offer-subtitle {
  min-height: 34px;
  margin: 6px 0 10px;
  color: #4D4D4D;
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.35;
}

.offer-description {
  min-height: 118px;
  margin: 8px 0 14px;
  color: #4D4D4D;
  font-size: 0.78rem;
  font-weight: 500;
  line-height: 1.45;
  text-align: center;
}

.offer-positioning {
  min-height: 118px;
  margin: 8px 0 14px;
  color: #3E3E3E;
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.45;
  text-align: center;
}

.offer-price {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  margin-bottom: 18px;
  color: var(--color-black-soft);
  font-family: var(--font-body);
  font-size: 1.58rem;
  font-weight: 800;
  line-height: 1;
}

.quote-price {
  max-width: 240px;
  margin-right: auto;
  margin-left: auto;
  font-size: 1rem;
  line-height: 1.35;
}

.price-prefix {
  display: block;
  margin: 0 0 4px;
  color: #4D4D4D;
  font-weight: 500;
  line-height: 1.25;
}

.offer-list {
  display: grid;
  align-self: stretch;
  min-height: 178px;
  gap: 3px;
  margin: 0 auto 22px;
  padding-left: 18px;
  list-style: disc;
  line-height: 1.35;
  text-align: left;
}

.offer-list li {
  padding-left: 0;
  color: #4D4D4D;
  font-size: 0.72rem;
  font-weight: 500;
}

.offer-list li::before {
  content: none;
}

.offer-card .btn {
  align-self: end;
  width: 100%;
  min-height: 38px;
  padding-top: 0.62rem;
  padding-bottom: 0.62rem;
  border-radius: 4px;
  font-size: 0.86rem;
  margin-top: 0;
}

.offer-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 20px;
}

.offer-note p {
  margin-bottom: 0;
  color: var(--color-black-soft);
  font-size: 0.95rem;
  font-weight: 500;
}

.about-section {
  padding: 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 70% 40%, rgba(201, 168, 76, 0.07), transparent 34%),
    var(--color-black);
}

.about-section .row {
  min-height: 420px;
}

.about-image-panel {
  width: 100%;
  height: 100%;
  min-height: 420px;
  overflow: hidden;
}

.about-image-panel img,
.about-image-panel .image-fallback {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-content-panel {
  display: flex;
  height: 100%;
  min-height: 420px;
  flex-direction: column;
  justify-content: center;
  max-width: 560px;
  padding: 64px 70px;
}

.about-content-panel .section-eyebrow {
  margin-bottom: 12px;
  font-size: 0.72rem;
}

.about-content-panel h2 {
  margin-bottom: 18px;
  font-size: clamp(1.75rem, 2.4vw, 2.35rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.about-content-panel p {
  margin-bottom: 14px;
  font-size: 0.92rem;
  line-height: 1.55;
}

.about-content-panel .about-role {
  margin-bottom: 16px;
  color: var(--color-gold);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about-content-panel .about-signature {
  margin: 6px 0 18px;
  color: var(--color-cream);
  font-family: var(--font-heading);
  font-size: 1.18rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.about-content-panel .btn {
  width: 154px;
  min-height: 42px;
  margin-top: 12px;
  border-radius: 4px;
  font-size: 0.82rem;
}

.testimonial-carousel {
  position: relative;
  padding: 0 54px;
}

.testimonial-viewport {
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  gap: 24px;
  transition: transform 520ms ease;
  will-change: transform;
}

.testimonial-slide {
  flex: 0 0 calc((100% - 48px) / 3);
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  min-height: 360px;
}

.quote-icon {
  color: var(--color-gold-dark);
  font-size: 2.5rem;
}

.testimonial-card p {
  margin: 18px 0 28px;
  color: #4D4D4D;
  font-size: 1.02rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: auto;
}

.testimonial-author img,
.avatar-fallback {
  width: 64px;
  height: 64px;
  flex: 0 0 64px;
  border-radius: 50%;
}

.avatar-fallback {
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(201, 168, 76, 0.45);
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.22), rgba(14, 14, 14, 0.88));
  color: var(--color-white);
  font-weight: 900;
}

.testimonial-author strong,
.testimonial-author small {
  display: block;
}

.testimonial-author strong {
  color: var(--color-black-soft);
  font-weight: 900;
}

.testimonial-author small {
  color: var(--color-anthracite);
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: inline-grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid rgba(201, 168, 76, 0.38);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.88);
  color: var(--color-gold-dark);
  transform: translateY(-50%);
  transition: background var(--transition), color var(--transition), transform var(--transition);
}

.carousel-arrow:hover {
  background: var(--color-gold);
  color: var(--color-white);
  transform: translateY(-50%) scale(1.04);
}

.carousel-arrow-prev {
  left: 0;
}

.carousel-arrow-next {
  right: 0;
}

.premium-accordion .accordion-item {
  overflow: hidden;
  margin-bottom: 16px;
  border: var(--border-soft);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 12px 30px rgba(14, 14, 14, 0.045);
}

.premium-accordion .accordion-button {
  min-height: 70px;
  background: transparent;
  color: var(--color-text);
  font-weight: 850;
  box-shadow: none;
}

.premium-accordion .accordion-button:not(.collapsed) {
  background: rgba(201, 168, 76, 0.12);
  color: var(--color-black-soft);
}

.premium-accordion .accordion-button:focus {
  border-color: rgba(201, 168, 76, 0.42);
  box-shadow: 0 0 0 0.2rem rgba(201, 168, 76, 0.18);
}

.premium-accordion .accordion-body {
  color: var(--color-anthracite);
}

.contact-section h2 {
  margin-bottom: 22px;
}

.discovery-transition {
  max-width: 520px;
  margin: 18px 0 0;
  padding-left: 18px;
  border-left: 2px solid rgba(201, 168, 76, 0.56);
  color: rgba(250, 247, 240, 0.78);
  font-size: 0.96rem;
}

.discovery-cta {
  margin-top: 24px;
}

.contact-list {
  display: grid;
  gap: 16px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.contact-list li {
  display: flex;
  align-items: center;
  gap: 13px;
  color: rgba(250, 247, 240, 0.86);
  font-weight: 700;
}

.contact-list i {
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: 50%;
  color: var(--color-gold);
}

.contact-list a:hover {
  color: var(--color-gold);
}

.calendly-card {
  width: min(100%, 640px);
  height: 620px;
  min-height: 520px;
  margin-left: auto;
  padding: 0;
  border-radius: 8px;
  overflow: hidden;
  background: var(--color-white);
  box-shadow: var(--shadow-dark);
}

.calendly-card iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.legal-page {
  padding-top: 82px;
}

.legal-container {
  max-width: 920px;
}

.legal-card {
  min-height: 280px;
}

.legal-card.reveal-on-scroll {
  opacity: 1;
  transform: none;
}

.legal-updated {
  margin: 10px 0 28px;
  color: var(--color-gray);
  font-weight: 600;
}

.legal-content {
  display: grid;
  gap: 28px;
  color: var(--color-text);
}

.legal-content section:not(:last-child) {
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(26, 26, 26, 0.08);
}

.legal-content h2 {
  margin-bottom: 14px;
  color: var(--color-black-soft);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.legal-content p {
  margin-bottom: 12px;
  color: #3E3E3E;
  line-height: 1.8;
}

.legal-content p:last-child {
  margin-bottom: 0;
}

.legal-content ul {
  display: grid;
  gap: 10px;
  margin: 0 0 14px;
  padding-left: 20px;
  color: #3E3E3E;
  line-height: 1.75;
}

.legal-content li::marker {
  color: var(--color-gold-dark);
}

.legal-content a {
  color: var(--color-gold-dark);
  font-weight: 700;
  text-decoration: none;
}

.legal-content a:hover {
  color: var(--color-gold);
}

.legal-table-wrap {
  overflow-x: auto;
}

.legal-table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  color: #3E3E3E;
  font-size: 0.9rem;
}

.legal-table th,
.legal-table td {
  padding: 14px 16px;
  border: 1px solid rgba(26, 26, 26, 0.08);
  vertical-align: top;
}

.legal-table th {
  background: rgba(201, 168, 76, 0.1);
  color: var(--color-black-soft);
  font-weight: 900;
}

.legal-form-block {
  padding: 22px;
  border: 1px solid rgba(201, 168, 76, 0.22);
  border-radius: 6px;
  background: rgba(250, 247, 240, 0.62);
}

.site-footer {
  padding: 72px 0 30px;
  border-top: 1px solid rgba(201, 168, 76, 0.2);
}

.footer-title {
  margin-bottom: 18px;
  color: var(--color-gold);
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links a,
.footer-placeholder {
  color: rgba(250, 247, 240, 0.72);
}

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

.footer-bottom {
  margin-top: 54px;
  padding-top: 24px;
  border-top: 1px solid rgba(250, 247, 240, 0.1);
  color: rgba(250, 247, 240, 0.58);
  font-size: 0.9rem;
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 520ms ease;
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}
