/* ================================================
   Bella Diana Aesthetic Clinic — Main Stylesheet
   Modern, warm, and refined aesthetic styling
   ================================================ */

/* Reset and Base */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  height: 100%;
  scroll-behavior: smooth;
}

:root {
  --clinic-ivory: #f5efe6;
  --clinic-cream: #faf6f0;
  --clinic-ink: #2a2420;
  --clinic-soft-ink: #5b5149;
  --clinic-gold: #b99254;
  --clinic-gold-deep: #a17c42;
  --clinic-rose: #efe2d6;
  --clinic-sage: #d9e0d6;
  --clinic-shadow: rgba(42, 36, 32, 0.14);
  --clinic-shadow-strong: rgba(42, 36, 32, 0.22);
  --clinic-border: rgba(42, 36, 32, 0.12);
  --bs-primary: var(--clinic-gold);
  --bs-primary-rgb: 185, 146, 84;
  --bs-link-color: var(--clinic-gold-deep);
  --bs-link-hover-color: var(--clinic-gold);
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  font-family: 'Manrope', sans-serif;
  background:
    radial-gradient(circle at 20% 10%, rgba(255, 255, 255, 0.7) 0%, transparent 45%),
    radial-gradient(circle at 85% 35%, rgba(185, 146, 84, 0.12) 0%, transparent 40%),
    linear-gradient(135deg, #fff9f2 0%, var(--clinic-ivory) 55%, #efe3d4 100%);
  color: var(--clinic-ink);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.smooth-background {
  background: #fff;
  position: relative;
}

body.smooth-background::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 20% 10%, rgba(255, 255, 255, 0.7) 0%, transparent 45%),
    radial-gradient(circle at 85% 35%, rgba(185, 146, 84, 0.12) 0%, transparent 40%),
    linear-gradient(135deg, #fff9f2 0%, var(--clinic-ivory) 55%, #efe3d4 100%);
  background-repeat: no-repeat;
  z-index: -1;
  pointer-events: none;
}

body.smooth-background section:not(.social-follow),
body.smooth-background footer {
  background: transparent !important;
}

body.smooth-background .trust-strip {
  border-top: none !important;
  border-bottom: none !important;
}

body.smooth-background section,
body.smooth-background footer {
  background: transparent;
}

body.smooth-background .trust-strip {
  border-top: none;
  border-bottom: none;
}

main {
  flex: 1;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease, transform 0.3s ease;
}

ul {
  list-style: none;
}

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

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  color: var(--clinic-ink);
}

p {
  color: var(--clinic-soft-ink);
}

body.page-home .home-section {
  position: relative;
}

body.page-home .home-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.55), rgba(255, 255, 255, 0.12));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7), inset 0 -1px 0 rgba(185, 146, 84, 0.18);
  pointer-events: none;
  z-index: 0;
}

body.page-home .home-section > * {
  position: relative;
  z-index: 1;
}

.section-pad {
  padding: clamp(60px, 8vw, 110px) 0;
}

.section-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.35em;
  font-size: 0.75rem;
  color: var(--clinic-gold-deep);
  font-weight: 600;
}

.section-title {
  font-size: clamp(2rem, 4.2vw, 3.4rem);
  margin: 15px 0 20px;
}

.container-narrow {
  max-width: 920px;
  margin: 0 auto;
}

.btn {
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 0.7rem 1.8rem;
  transition: all 0.25s ease;
  border: 1px solid transparent;
}

.btn-primary {
  background: linear-gradient(120deg, var(--clinic-gold), var(--clinic-gold-deep));
  border: none;
  color: #fff;
  box-shadow: 0 12px 24px rgba(185, 146, 84, 0.3);
}

.btn-primary:hover,
.btn-primary:focus {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 18px 30px rgba(185, 146, 84, 0.4);
}

.btn-outline-primary {
  background: transparent;
  border-color: var(--clinic-gold);
  color: var(--clinic-ink);
}

.btn-outline-primary:hover,
.btn-outline-primary:focus {
  background: var(--clinic-gold);
  color: #fff;
}

.text-primary,
.link-primary {
  color: var(--clinic-gold-deep) !important;
}

.link-primary:hover {
  color: var(--clinic-gold) !important;
}

.btn-gold {
  background: linear-gradient(120deg, var(--clinic-gold), var(--clinic-gold-deep));
  color: #fff;
  box-shadow: 0 12px 24px rgba(168, 128, 60, 0.3);
}

.btn-gold:hover,
.btn-gold:focus {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 18px 30px rgba(168, 128, 60, 0.4);
}

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

.btn-outline-gold:hover,
.btn-outline-gold:focus {
  background: var(--clinic-gold);
  color: #fff;
}

.btn-soft {
  background: #fff;
  border-color: var(--clinic-border);
  color: var(--clinic-ink);
}

.btn-soft:hover,
.btn-soft:focus {
  border-color: var(--clinic-gold);
  color: var(--clinic-gold-deep);
  transform: translateY(-2px);
}

/* Header and Navigation */
.main-header {
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid rgba(31, 26, 23, 0.06);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.brand-mark {
  gap: 12px;
  padding-right: 16px;
  flex-shrink: 0;
}

.navbar-nav {
  gap: clamp(18px, 2.4vw, 40px);
  margin-left: clamp(28px, 3.5vw, 60px);
}

.brand-logo {
  width: 74px;
  height: 74px;
  object-fit: contain;
  object-position: center;
  border-radius: 16px;
  background: linear-gradient(135deg, #1c1714, #2b231f);
  padding: 0px;
  box-shadow: 0 12px 26px rgba(30, 26, 23, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transform: none;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
  margin-right: 10px;
}

.brand-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  color: var(--clinic-ink);
}

.brand-subtitle {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--clinic-gold-deep);
}

.navbar-nav .nav-link,
.profile-links .nav-link {
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--clinic-ink);
  position: relative;
  padding-bottom: 0.5rem;
  padding-left: 0.6rem;
  padding-right: 0.6rem;
  white-space: nowrap;
}

.navbar-nav .nav-link::after,
.profile-links .nav-link::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0.2rem;
  width: 65%;
  height: 0.35rem;
  background: rgba(185, 146, 84, 0.22);
  border-radius: 999px;
  box-shadow: 0 6px 16px rgba(185, 146, 84, 0.22), 0 0 0 rgba(185, 146, 84, 0);
  transform: translateX(-50%) scaleX(0.3);
  opacity: 0;
  transition: transform 0.25s ease, opacity 0.25s ease, box-shadow 0.25s ease;
  z-index: -1;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus,
.navbar-nav .nav-link.active,
.profile-links .nav-link:hover,
.profile-links .nav-link:focus {
  color: var(--clinic-gold-deep);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link:focus::after,
.navbar-nav .nav-link.active::after,
.profile-links .nav-link:hover::after,
.profile-links .nav-link:focus::after {
  transform: translateX(-50%) scaleX(1);
  opacity: 1;
  box-shadow: 0 10px 22px rgba(185, 146, 84, 0.3), 0 0 16px rgba(185, 146, 84, 0.2);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  justify-content: flex-start;
}

.btn-gold {
  white-space: nowrap;
}

.user-icon {
  width: 40px;
  height: 40px;
  object-fit: cover;
}

.login-trigger {
  border: none;
  background: transparent;
  padding: 4px 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--clinic-ink);
  cursor: pointer;
  transition: color 0.2s ease, transform 0.2s ease;
}

.login-trigger:hover,
.login-trigger:focus {
  color: var(--clinic-gold-deep);
  transform: scale(1.04);
}

/* Custom Modals */
.custom-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1050;
  background-color: rgba(19, 16, 13, 0.6);
  padding: 20px;
}

.custom-modal-content {
  background-color: #fff;
  margin: 4% auto;
  padding: 30px;
  border-radius: 18px;
  max-width: 520px;
  width: 100%;
  box-shadow: 0 20px 55px rgba(31, 26, 23, 0.2);
  position: relative;
  color: var(--clinic-ink);
}

.custom-modal-content .close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: rgba(200, 164, 90, 0.2);
  --bs-btn-close-color: var(--clinic-ink);
  --bs-btn-close-hover-opacity: 1;
  opacity: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  z-index: 10;
}

.custom-modal-content h1,
.custom-modal-content h2,
.custom-modal-content h3 {
  color: var(--clinic-ink);
}

.modal-form-single {
  max-width: 420px;
  margin: 0 auto;
}

.modal-form-single a,
.auth-link {
  color: var(--clinic-gold-deep);
  font-weight: 600;
  text-decoration: none;
}

.modal-form-single a:hover,
.auth-link:hover {
  color: var(--clinic-ink);
  text-decoration: underline;
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(70px, 10vw, 120px) 0;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(255, 238, 210, 0.9), transparent 70%);
  opacity: 0.8;
  z-index: 0;
}

.hero::before {
  top: -140px;
  left: -120px;
}

.hero::after {
  bottom: -180px;
  right: -100px;
}

.hero-split {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: clamp(30px, 5vw, 70px);
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-copy h1 {
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  margin: 15px 0 20px;
}

.hero-copy p {
  font-size: 1.05rem;
  max-width: 540px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 30px;
}

.hero-actions .btn-gold {
  position: relative;
  z-index: 0;
}

.hero-actions .btn-gold::after {
  content: "";
  position: absolute;
  inset: -10px;
  border-radius: 999px;
  background: radial-gradient(circle at 50% 50%, rgba(185, 146, 84, 0.45), transparent 70%);
  filter: blur(12px);
  opacity: 0.75;
  z-index: -1;
  pointer-events: none;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}

.hero-badge {
  background: #fff;
  border: 1px solid var(--clinic-border);
  border-radius: 999px;
  padding: 6px 16px;
  font-size: 0.85rem;
  color: var(--clinic-soft-ink);
  animation: badgeFloat 10s ease-in-out infinite;
}

.hero-badge:nth-child(2) {
  animation-delay: -2.5s;
}

.hero-badge:nth-child(3) {
  animation-delay: -5s;
}

.hero-media {
  position: relative;
}

.hero-frame {
  background: #fff;
  border-radius: 28px;
  padding: clamp(16px, 2vw, 24px);
  box-shadow: 0 35px 90px rgba(31, 26, 23, 0.22);
  position: relative;
  border: 1px solid rgba(185, 146, 84, 0.18);
  transform: translateY(-10px);
  z-index: 0;
}

.hero-frame::before {
  content: "";
  position: absolute;
  inset: 12px;
  border-radius: 22px;
  border: 1px solid rgba(185, 146, 84, 0.14);
  pointer-events: none;
  z-index: 1;
}

.hero-frame::after {
  content: "";
  position: absolute;
  inset: -30px;
  border-radius: 34px;
  background: radial-gradient(circle at 40% 30%, rgba(185, 146, 84, 0.28), transparent 70%);
  filter: blur(14px);
  z-index: -1;
  pointer-events: none;
}

.hero-frame img {
  border-radius: 20px;
  height: clamp(300px, 38vw, 460px);
  object-fit: cover;
  position: relative;
  z-index: 1;
}

.hero-floating-card {
  position: absolute;
  right: clamp(10px, 3vw, 30px);
  bottom: clamp(-20px, -3vw, -40px);
  background: rgba(255, 255, 255, 0.92);
  border-radius: 20px;
  padding: 16px 20px;
  display: grid;
  gap: 14px;
  min-width: 220px;
  box-shadow: 0 18px 40px rgba(31, 26, 23, 0.18);
  border: 1px solid rgba(185, 146, 84, 0.18);
  backdrop-filter: blur(6px);
}

.hero-floating-card strong {
  display: block;
  font-size: 1.1rem;
  color: var(--clinic-ink);
}

.hero-floating-card span {
  color: var(--clinic-soft-ink);
  font-size: 0.9rem;
}

.parallax-layer {
  position: absolute;
  inset: auto;
  pointer-events: none;
  z-index: 1;
}

.parallax-orb {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 40%, rgba(255, 255, 255, 0.9), rgba(200, 164, 90, 0.2));
  filter: blur(0.5px);
}

.parallax-ring {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  border: 1px solid rgba(200, 164, 90, 0.3);
}

.float-slow {
  animation: floatSlow 12s ease-in-out infinite;
}

.float-fast {
  animation: floatFast 7s ease-in-out infinite;
}

@keyframes floatSlow {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
}

@keyframes floatFast {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(10px); }
}

@keyframes badgeFloat {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-6px); }
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  will-change: opacity, transform;
}

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

.reveal--delay-1 {
  transition-delay: 0.08s;
}

.reveal--delay-2 {
  transition-delay: 0.16s;
}

.reveal--delay-3 {
  transition-delay: 0.24s;
}

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .reveal.is-visible {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* Trust Strip */
.trust-strip {
  background: #fff;
  border-top: 1px solid var(--clinic-border);
  border-bottom: 1px solid var(--clinic-border);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 18px;
}

.trust-card {
  background: var(--clinic-cream);
  border-radius: 16px;
  padding: 18px;
  text-align: center;
  border: 1px solid var(--clinic-border);
}

.trust-card span {
  display: block;
  font-size: 0.9rem;
  color: var(--clinic-soft-ink);
}

/* Treatments */
.treatments-section {
  background: linear-gradient(130deg, #fff9f1, #efe4d8);
}

.treatment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.treatment-card {
  background: #fff;
  border-radius: 18px;
  padding: 22px;
  border: 1px solid rgba(185, 146, 84, 0.16);
  box-shadow: 0 20px 50px rgba(31, 26, 23, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.treatment-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 60px rgba(31, 26, 23, 0.16);
}

.treatment-card::before {
  content: "";
  position: absolute;
  left: 22px;
  right: 22px;
  top: 18px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(185, 146, 84, 0.2), rgba(185, 146, 84, 0.7), rgba(185, 146, 84, 0.2));
}

.treatment-card h3 {
  margin-bottom: 10px;
  font-size: 1.4rem;
}

.treatment-card p {
  font-size: 0.95rem;
}

.price-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  padding: 6px 14px;
  background: rgba(200, 164, 90, 0.18);
  color: var(--clinic-ink);
  font-weight: 600;
  font-size: 0.85rem;
}

/* About */
.about-highlight {
  background: #fff;
  border-radius: 26px;
  padding: clamp(30px, 4vw, 50px);
  box-shadow: 0 30px 70px rgba(31, 26, 23, 0.12);
}

.about-list {
  display: grid;
  gap: 16px;
  margin-top: 20px;
}

.about-list li {
  padding: 12px 16px;
  background: var(--clinic-cream);
  border-radius: 12px;
  border: 1px solid var(--clinic-border);
}

/* Consultation */
.consultation-section {
  background: linear-gradient(140deg, #f2e7db, #faf4ec);
}

.consultation-panel {
  background: #fff;
  border-radius: 24px;
  padding: clamp(28px, 4vw, 46px);
  box-shadow: 0 30px 80px rgba(31, 26, 23, 0.15);
}

.consultation-panel .form-control,
.consultation-panel .form-select {
  border-radius: 12px;
  border-color: var(--clinic-border);
  padding: 12px 14px;
}

/* Gallery Preview */
.gallery-preview {
  background: #fff;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  margin-top: 30px;
}

.gallery-grid a {
  display: block;
}

.gallery-grid img {
  border-radius: 18px;
  height: 220px;
  object-fit: cover;
  box-shadow: 0 18px 40px rgba(31, 26, 23, 0.16);
  transition: transform 0.3s ease;
}

.gallery-grid img:hover {
  transform: translateY(-6px) scale(1.02);
}

/* CTA Banner */
.cta-banner {
  background: var(--clinic-ink);
  color: #fff;
  border-radius: 30px;
  padding: clamp(30px, 5vw, 50px);
  box-shadow: 0 25px 60px rgba(31, 26, 23, 0.3);
}

.cta-banner h2,
.cta-banner p {
  color: #fff;
}

/* Social */
.social-follow {
  text-align: center;
  padding: 40px 0;
  background: var(--clinic-ink);
  color: #ffffff;
}

.social-follow p {
  font-size: 1rem;
  margin-bottom: 15px;
  letter-spacing: 2px;
  color: #fff;
}

.social-follow .social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 20px;
  transition: transform 0.3s ease, background 0.3s ease;
}

.social-follow .social-icon:hover {
  background-color: rgba(200, 164, 90, 0.5);
  transform: translateY(-3px);
}

/* Reviews */
.reviews-section {
  padding-top: clamp(50px, 6vw, 80px);
  padding-bottom: clamp(50px, 6vw, 80px);
}

.reviews-card {
  background: rgba(255, 255, 255, 0.85);
  border-radius: 28px;
  border: 1px solid rgba(185, 146, 84, 0.18);
  box-shadow: 0 24px 60px rgba(31, 26, 23, 0.12);
  padding: clamp(24px, 4vw, 40px);
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 0.6fr);
  gap: 24px;
  align-items: center;
}

.reviews-card .section-title {
  margin-bottom: 12px;
}

.reviews-rating {
  display: grid;
  gap: 14px;
  justify-items: center;
  text-align: center;
}

.reviews-stars {
  font-size: 1.5rem;
  letter-spacing: 0.2em;
  color: var(--clinic-gold-deep);
}

.reviews-score strong {
  font-size: 2rem;
  color: var(--clinic-ink);
}

.reviews-score span {
  display: block;
  color: var(--clinic-soft-ink);
  font-size: 0.95rem;
}

.reviews-disclaimer {
  font-size: 0.85rem;
  color: var(--clinic-soft-ink);
  margin-top: 8px;
}

@media (max-width: 900px) {
  .reviews-card {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

body.page-home .social-follow {
  background: #1f1a17 !important;
  color: #fff;
  box-shadow: none;
}

body.page-home .social-follow.home-section::before {
  background: none;
  box-shadow: none;
}

/* Footer */
.site-footer {
  background: transparent;
  border-top: 1px solid rgba(185, 146, 84, 0.08);
  box-shadow: 0 -3px 10px rgba(31, 26, 23, 0.04);
  color: var(--clinic-soft-ink);
  padding: 36px 0 26px;
}

.footer-brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: var(--clinic-ink);
}

.footer-note {
  margin-top: 8px;
  font-size: 0.95rem;
}

.footer-links,
.footer-legal {
  display: grid;
  gap: 8px;
}

.footer-legal {
  justify-items: end;
  text-align: right;
  margin-bottom: 8px;
}

.footer-links a,
.footer-legal a {
  color: var(--clinic-soft-ink);
  font-size: 0.9rem;
}

.footer-links a:hover,
.footer-legal a:hover {
  color: var(--clinic-gold-deep);
}

.footer-social {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
}

.site-footer .col-lg-3.text-lg-end {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--clinic-cream);
  color: var(--clinic-ink);
}

.footer-social a:hover {
  background: var(--clinic-gold);
  color: #fff;
}

.footer-copy {
  font-size: 0.85rem;
  color: var(--clinic-soft-ink);
}

/* Utility surfaces */
.surface-light {
  background: #ffffff;
  color: var(--clinic-ink);
}

.surface-light h1,
.surface-light h2,
.surface-light h3 {
  color: var(--clinic-ink);
}

.surface-light p {
  color: var(--clinic-soft-ink);
}

.policy-card {
  border-radius: 24px;
  padding: clamp(40px, 6vw, 70px);
  box-shadow: 0 25px 55px rgba(31, 26, 23, 0.15);
  margin-top: 40px;
  margin-bottom: 60px;
}

@media (max-width: 991px) {
  .header-actions {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 767px) {
  .hero-frame img {
    height: 260px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .footer-legal {
    justify-items: center;
  }

  .footer-social {
    justify-content: center;
  }

  .site-footer .col-lg-3.text-lg-end {
    align-items: center;
  }
}
