:root {
  --sw-bg-dark: #16161e;
  --sw-bg-darker: #0e0e14;
  --sw-bg-soft: #f6f3ed;
  --sw-bg-soft-2: #efe9df;
  --sw-accent: #c29442;
  --sw-accent-strong: #a97a2d;
  --sw-accent-soft: rgba(194, 148, 66, 0.16);
  --sw-ink: #23232b;
  --sw-heading-dark: #191922;
  --sw-muted-dark: #4c4c55;
  --sw-white: #ffffff;
  --sw-line: rgba(35, 35, 43, 0.1);
  --sw-line-dark: rgba(255, 255, 255, 0.14);
  --font-body: 'Inter', 'Segoe UI', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif;
  --font-display: 'Palatino Linotype', 'Book Antiqua', 'Playfair Display', Georgia, serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--sw-ink);
  background: var(--sw-white);
  line-height: 1.7;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6, .display-1, .display-2, .display-3, .display-4, .display-5, .display-6 {
  font-family: var(--font-display);
  color: var(--sw-heading-dark);
  letter-spacing: -0.02em;
  font-weight: 500;
}

p {
  color: var(--sw-muted-dark);
}

a {
  transition: all 0.25s ease;
  color: var(--sw-accent-strong);
}

a:hover {
  color: var(--sw-accent);
}

.text-accent {
  color: var(--sw-accent) !important;
}

.bg-soft {
  background-color: var(--sw-bg-soft) !important;
}

.bg-soft-2 {
  background-color: var(--sw-bg-soft-2) !important;
}

.bg-ink {
  background-color: var(--sw-bg-dark) !important;
}

.bg-ink-deep {
  background-color: var(--sw-bg-darker) !important;
}

.eyebrow-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--sw-accent-strong);
  background: var(--sw-accent-soft);
  border-radius: 100px;
  padding: 0.4rem 1rem;
  margin-bottom: 1rem;
}

.text-light .eyebrow-label,
.bg-ink .eyebrow-label,
.bg-ink-deep .eyebrow-label,
.section-overlay .eyebrow-label {
  background: rgba(194, 148, 66, 0.22);
  color: #e5c785;
}

.text-light, .text-light p, .text-light h1, .text-light h2, .text-light h3, .text-light h4, .text-light h5, .text-light h6 {
  color: var(--sw-white) !important;
}

.btn {
  border-radius: 4px;
  font-weight: 600;
  padding: 0.72rem 1.5rem;
  letter-spacing: 0.02em;
  font-size: 0.95rem;
}

.btn-gold {
  background: var(--sw-accent);
  border-color: var(--sw-accent);
  color: #1c1c24;
  box-shadow: 0 8px 24px rgba(194, 148, 66, 0.35);
}

.btn-gold:hover, .btn-gold:focus, .btn-gold:active {
  background: var(--sw-accent-strong);
  border-color: var(--sw-accent-strong);
  color: #fff;
}

.btn-outline-light-custom {
  border: 1px solid rgba(255, 255, 255, 0.7);
  color: #fff;
  background: transparent;
  padding: 0.68rem 1.4rem;
  border-radius: 4px;
  font-weight: 500;
  transition: 0.3s;
}

.btn-outline-light-custom:hover {
  background: #fff;
  color: var(--sw-heading-dark);
  border-color: #fff;
}

.btn-dark-custom {
  background: var(--sw-heading-dark);
  border: 1px solid var(--sw-heading-dark);
  color: #fff;
  padding: 0.72rem 1.6rem;
  border-radius: 4px;
}

.btn-dark-custom:hover {
  background: var(--sw-accent-strong);
  border-color: var(--sw-accent-strong);
  color: #fff;
}

.rounded-4 {
  border-radius: 1rem !important;
}

.rounded-5 {
  border-radius: 1.5rem !important;
}

.shadow-card {
  box-shadow: 0 1px 2px rgba(20, 20, 30, 0.03), 0 8px 30px rgba(22, 22, 30, 0.05);
}

.iframe-map {
  width: 100%;
  height: 100%;
  min-height: 320px;
  border: 0;
  filter: grayscale(0.15) contrast(1.05);
  display: block;
}

.navbar {
  padding-top: 0.85rem;
  padding-bottom: 0.85rem;
  transition: background 0.3s ease, box-shadow 0.3s ease;
  z-index: 1040;
}

.navbar .navbar-brand {
  font-family: var(--font-display);
  font-size: 1.45rem;
  letter-spacing: -0.02em;
  color: var(--sw-heading-dark);
  font-weight: 600;
}

.navbar .nav-link {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--sw-muted-dark);
  margin: 0 0.2rem;
  padding: 0.5rem 0.8rem !important;
  position: relative;
  white-space: nowrap;
}

.navbar .nav-link:hover, .navbar .nav-link.active {
  color: var(--sw-accent-strong);
}

.navbar .nav-link::after {
  content: '';
  position: absolute;
  left: 0.8rem;
  right: 100%;
  bottom: 0.2rem;
  height: 2px;
  background: var(--sw-accent);
  transition: right 0.3s ease;
}

.navbar .nav-link:hover::after, .navbar .nav-link.active::after {
  right: 0.8rem;
}

.navbar.scrolled {
  background: #ffffff;
  box-shadow: 0 4px 20px rgba(22, 22, 30, 0.08);
}

.navbar.scrolled .nav-link {
  color: var(--sw-muted-dark);
}

.navbar .btn-navbar {
  background: var(--sw-accent);
  color: #1c1c24;
  border-radius: 4px;
  font-size: 0.9rem;
  padding: 0.55rem 1.2rem;
  font-weight: 600;
  border: 0;
}

.navbar .btn-navbar:hover {
  background: var(--sw-accent-strong);
  color: #fff;
}

.navbar-toggler {
  border: 0;
  font-size: 1.4rem;
  color: var(--sw-heading-dark);
}

.navbar-toggler:focus {
  box-shadow: none;
}

@media (max-width: 991.98px) {
  .navbar .nav-link {
    padding: 0.5rem 0 !important;
  }

  .navbar .nav-link::after {
    left: 0;
    right: auto;
    background: var(--sw-accent);
  }

  .navbar .nav-link:hover::after, .navbar .nav-link.active::after {
    right: auto;
    left: 0;
    width: 100%;
  }
}

.hero-section, .hero-carousel-item {
  min-height: 100vh;
  min-height: calc(100vh - 76px);
  display: flex;
  align-items: center;
  backface-visibility: hidden;
  color: #fff;
  position: relative;
}

.hero-section .hero-content h1 {
  color: #fff !important;
  font-size: clamp(2.4rem, 4.5vw, 4rem);
  line-height: 1.15;
  max-width: 760px;
}

.hero-section .hero-content h1 span {
  color: #e5c785;
}

.hero-section .hero-content p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.1rem;
  max-width: 630px;
  margin-top: 1.2rem;
}

.hero-section .btn-outline-light-custom {
  margin-left: 0.6rem;
}

.hero-indicators {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  list-style: none;
  padding: 0;
  margin: 2rem 0 0;
}

.hero-indicators li {
  width: 26px;
  height: 3px;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  border-radius: 20px;
  overflow: hidden;
  transition: 0.3s;
}

.hero-indicators li.active, .hero-indicators li:hover {
  background: #e5c785;
  width: 42px;
}

.hero-indicators li button {
  background: transparent;
  border: 0;
  display: block;
  width: 100%;
  height: 100%;
  font-size: 0;
  cursor: pointer;
}

.hero-carousel-item {
  position: relative;
  background: linear-gradient(115deg, rgba(10, 10, 16, 0.82), rgba(22, 22, 30, 0.55));
}

.hero-carousel-item .hero-visual {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-carousel-item .hero-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(8, 8, 14, 0.88),
    rgba(8, 8, 14, 0.18)
  );
}

.hero-scroll-cue {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.65);
  font-size: 1.6rem;
  animation: scrollBounce 2s infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, 8px); }
}

.section-padding {
  padding: 5.5rem 0;
}

.section-padding-sm {
  padding: 3rem 0;
}

.section-overlay {
  position: relative;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  color: #fff;
}

.section-overlay::before {
  content: '';
  position: absolute;
  inset: 0;
  background: inherit;
  filter: none;
}

.section-overlay .overlay-dark {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 16, 0.78);
}

.section-overlay .container, .section-overlay .container-fluid {
  position: relative;
  z-index: 2;
}

.section-overlay h2, .section-overlay h2 + p {
  color: #fff;
}

.service-card {
  background: #ffffff;
  border: 1px solid var(--sw-line);
  border-radius: 0.8rem;
  transition: 0.3s ease-in-out;
  position: relative;
  overflow: hidden;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(20, 20, 30, 0.08);
  border-color: transparent;
}

.service-card .service-img {
  width: 100%;
  height: 225px;
  object-fit: cover;
  background: #e8e2d8;
}

.service-card .card-body {
  padding: 1.5rem;
}

.service-card .card-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--sw-heading-dark);
  margin-bottom: 0.7rem;
}

.service-card .card-text {
  font-size: 0.95rem;
  line-height: 1.65;
}

.service-card .btn-card {
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--sw-accent-strong);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1.2rem;
}

.service-card .btn-card i {
  transition: transform 0.25s;
}

.service-card .btn-card:hover i {
  transform: translateX(4px);
}

.service-card .card-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--sw-accent-soft);
  color: var(--sw-accent-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 1.2rem;
}

.stat-item {
  text-align: center;
  padding: 1.5rem 0.8rem;
  border-radius: 1rem;
}

.stat-item .stat-number {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--sw-accent);
  font-weight: 600;
  line-height: 1;
  display: inline-block;
}

.stat-item .stat-label {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--sw-muted-dark);
  margin-top: 0.5rem;
  font-weight: 600;
}

.stat-item .stat-number::after {
  content: '+';
}

.process-step {
  position: relative;
  padding: 0 0.8rem;
  text-align: center;
}

.process-step .step-num {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--sw-accent-strong);
  border: 2px solid var(--sw-accent-soft);
  background: var(--sw-white);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin-bottom: 1rem;
}

.process-step .step-num {
  background: var(--sw-accent-soft);
  color: var(--sw-heading-dark);
}

.process-step h5 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

.process-step p {
  font-size: 0.92rem;
}

.team-card {
  text-align: center;
}

.team-card .team-img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 0.8rem;
  background: #e5dfd3;
}

.team-card .team-name {
  font-family: var(--font-display);
  margin-top: 1.1rem;
  font-size: 1.22rem;
  color: var(--sw-heading-dark);
}

.team-card .team-role {
  color: var(--sw-accent-strong);
  font-weight: 600;
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.testimonial-card {
  background: #fff;
  border: 1px solid var(--sw-line);
  border-radius: 1.2rem;
  padding: 2rem;
  height: 100%;
  transition: 0.2s;
}

.testimonial-card blockquote {
  font-family: var(--font-display);
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--sw-ink);
  quotes: '\201C' '\201D';
  margin: 1.2rem 0;
}

.testimonial-card blockquote::before {
  content: open-quote;
  font-size: 3rem;
  color: var(--sw-accent);
  font-family: var(--font-display);
  line-height: 0.8;
  display: block;
  margin-bottom: -0.2rem;
}

.testimonial-card .testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.testimonial-card .author-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--sw-bg-soft-2);
  object-fit: cover;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.gallery-grid .gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 0.8rem;
  aspect-ratio: 1/1;
  background: #e5dfd0;
}

.gallery-grid .gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

.gallery-grid .gallery-item .gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 15, 20, 0.7), transparent);
  opacity: 0;
  transition: opacity 0.3s;
  display: flex;
  align-items: flex-end;
  padding: 1rem;
  color: #fff;
}

.gallery-grid .gallery-item:hover .gallery-overlay {
  opacity: 1;
}

@media (max-width: 767.98px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.gallery-carousel img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 1rem;
}

.gallery-hero-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 1rem;
  background: #e8e1d4;
}

.quote-section {
  background-color: var(--sw-bg-dark);
  color: #fff;
  padding: 4rem 0;
  text-align: center;
}

.quote-section h2 {
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: #fff;
  max-width: 860px;
  margin: 0 auto 1.5rem;
}

.contact-form .form-label {
  font-weight: 600;
  color: unset;
  opacity: 0.85;
}

.contact-form .form-control, .contact-form .form-select {
  background: #fff;
  border: 1px solid rgba(35, 35, 43, 0.12);
  border-radius: 4px;
  padding: 0.75rem 1rem;
  font-size: 0.95rem;
}

.contact-form .form-control:focus, .contact-form .form-select:focus {
  border-color: var(--sw-accent);
  box-shadow: 0 0 0 0.2rem rgba(194, 148, 66, 0.2);
}

textarea.form-control {
  min-height: 120px;
}

.form-notify {
  position: fixed;
  top: 1.5rem;
  right: 1.5rem;
  z-index: 1080;
  display: inline-flex;
  align-items: flex-start;
  gap: 0.7rem;
  background: #ffffff;
  border-left: 4px solid var(--sw-accent);
  border-radius: 0.5rem;
  box-shadow: 0 10px 40px rgba(20, 20, 30, 0.2);
  padding: 1rem 1.2rem;
  min-width: 300px;
  max-width: 90vw;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-12px);
  transition: all 0.3s ease;
}

.form-notify.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.form-notify i {
  font-size: 1.3rem;
  color: var(--sw-accent-strong);
  line-height: 1.3;
}

.form-notify.error {
  border-left-color: #c0392b;
}

.form-notify.error i {
  color: #c0392b;
}

.form-notify .notify-title {
  font-weight: 700;
  margin: 0 0 0.2rem;
  font-size: 0.95rem;
  color: #1c1c24;
}

.form-notify .notify-desc {
  font-size: 0.9rem;
  color: var(--sw-muted-dark);
  margin: 0;
  line-height: 1.4;
}

input[type='checkbox'].form-check-input:checked {
  background-color: var(--sw-accent);
  border-color: var(--sw-accent);
}

.accordion-custom .accordion-item {
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: transparent;
  margin-bottom: 0.8rem;
  border-radius: 0.5rem !important;
  overflow: hidden;
}

.accordion-custom .accordion-item + .accordion-item {
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.accordion-custom .accordion-header {
  margin-bottom: 0;
}

.accordion-custom .accordion-button {
  background: transparent;
  color: #fff;
  font-weight: 600;
  padding: 1.1rem 1.3rem;
  font-size: 1.05rem;
  box-shadow: none;
}

.accordion-custom .accordion-button:not(.collapsed) {
  color: #e5c785;
  background: rgba(255, 255, 255, 0.04);
}

.accordion-custom .accordion-button::after {
  background-image: none;
  content: '\f078';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  transform: rotate(0deg);
  width: 1.25rem;
  height: 1.25rem;
  color: inherit;
  font-size: 1rem;
}

.accordion-custom .accordion-button:not(.collapsed)::after {
  background-image: none;
  transform: rotate(180deg);
  color: #e5c785;
}

.accordion-custom .accordion-button:not(.collapsed) .accordion-button::before {
  background: none;
}

.accordion-custom .accordion-body {
  color: rgba(255, 255, 255, 0.7);
  padding-top: 0;
  padding-left: 1.3rem;
  padding-right: 1.3rem;
  padding-bottom: 1.2rem;
}

.bg-white-accordion .accordion-item {
  border-color: var(--sw-line);
  background: #fff;
}

.bg-white-accordion .accordion-button {
  color: var(--sw-heading-dark);
  background: #fff;
}

.bg-white-accordion .accordion-button:not(.collapsed) {
  color: var(--sw-accent-strong);
  background: var(--sw-bg-soft);
}

.bg-white-accordion .accordion-body {
  color: var(--sw-muted-dark);
}

.carousel-control-btn {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: transparent;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
  margin: 0 0.3rem;
  cursor: pointer;
  font-size: 1.1rem;
}

.carousel-control-btn:hover {
  background: #fff;
  color: var(--sw-heading-dark);
  border-color: #fff;
}

.carousel-control-btn-light-version {
  border-color: rgba(35, 35, 43, 0.14);
  color: var(--sw-heading-dark);
}

.carousel-control-btn-light-version:hover {
  background: var(--sw-heading-dark);
  border-color: var(--sw-heading-dark);
  color: #fff;
}

.partner-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 60px;
  font-size: 1.4rem;
  font-weight: 700;
  color: #6a6a74;
  opacity: 0.5;
  transition: 0.3s;
  letter-spacing: 0.03em;
  white-space: nowrap;
}

.partner-logo i {
  margin-right: 0.4rem;
  color: var(--sw-accent-strong);
}

.partner-logo:hover {
  opacity: 1;
}

.brand-strip {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  padding: 1.8rem 0;
}

.brand-strip .partner-logo {
  color: rgba(255, 255, 255, 0.4);
  opacity: 0.6;
}

.brand-strip .partner-logo:hover {
  color: #fff;
}

.pricing-card {
  background: #fff;
  border: 1px solid rgba(22, 22, 30, 0.1);
  border-radius: 1.1rem;
  padding: 2rem 1.8rem;
  height: 100%;
  position: relative;
  transition: 0.25s;
}

.pricing-card:hover {
  box-shadow: 0 12px 28px rgba(20, 20, 30, 0.1);
  transform: translateY(-4px);
}

.pricing-card .pricing-badge {
  position: absolute;
  top: -0.9rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--sw-accent);
  color: #111;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.35rem 1.2rem;
  border-radius: 100px;
  white-space: nowrap;
}

.pricing-card .price-tag {
  font-size: 2.6rem;
  font-family: var(--font-display);
  color: var(--sw-accent-strong);
  font-weight: 600;
}

.pricing-card .price-tag > span {
  font-family: var(--font-body);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--sw-muted-dark);
}

.pricing-card .service-features {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
}

.pricing-card .service-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  margin-bottom: 0.7rem;
  font-size: 0.95rem;
}

.pricing-card .service-features li i {
  color: var(--sw-accent-strong);
  margin-top: 0.2rem;
}

.contact-info-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.5rem;
  font-size: 0.98rem;
}

.contact-info-item .contact-icon {
  background: var(--sw-accent-soft);
  color: var(--sw-accent-strong);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.2rem;
}

.contact-info-item .contact-icon + span {
  display: block;
  padding-top: 0.2rem;
  font-weight: 500;
}

.footer {
  background-color: var(--sw-bg-dark);
  color: rgba(255, 255, 255, 0.7);
  padding-top: 4.2rem;
}

.footer .footer-heading {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1.4rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.footer h1, .footer h2, .footer h3, .footer h4, .footer h5, .footer h6 {
  color: #fff;
}

.footer .footer-brand {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: #fff;
}

.footer a:not(.social-link):not(.d-block) {
  color: rgba(255, 255, 255, 0.65);
}

.footer a:not(.social-link):hover, .footer a:not(.social-link).active {
  color: #e5c785;
}

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

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

.footer ul li a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.65);
  transition: 0.2s;
}

.footer ul li a:hover {
  color: #e5c785;
  padding-left: 4px;
}

.footer .footer-contact {
  font-size: 0.93rem;
  line-height: 1.8;
}

.footer .footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding-top: 2rem;
  padding-bottom: 2rem;
  margin-top: 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer .footer-bottom .legal-links a {
  display: inline-block;
  margin-left: 1rem;
}

.footer .footer-bottom p {
  color: rgba(255, 255, 255, 0.5);
}

.footer .footer-bottom .legal-links a {
  color: rgba(255, 255, 255, 0.5);
}

.footer .footer-bottom .legal-links a:hover {
  color: #fff;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  color: #fff;
  margin-right: 0.4rem;
  margin-bottom: 0.4rem;
  font-size: 0.95rem;
  transition: 0.25s;
}

.social-link:hover {
  background: var(--sw-accent);
  color: #111;
}

.cookie-banner {
  position: fixed;
  bottom: 1.2rem;
  left: 1.2rem;
  z-index: 1050;
  max-width: 430px;
  width: calc(100vw - 2.4rem);
  background: #fff;
  color: var(--sw-ink);
  border-radius: 0.8rem;
  box-shadow: 0 12px 38px rgba(15, 15, 22, 0.2);
  padding: 1.4rem 1.4rem 1.2rem;
  display: none;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform: translateY(12px);
  opacity: 0;
}

.cookie-banner.show {
  display: block;
  animation: cookieIn 0.35s ease forwards;
}

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

.cookie-banner.hide {
  animation: cookieOut 0.3s ease forwards;
}

@keyframes cookieOut {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(12px);
    visibility: hidden;
  }
}

.cookie-banner .cookie-title {
  font-family: var(--font-body);
  font-weight: 700;
  color: var(--sw-heading-dark);
  margin-bottom: 0.4rem;
}

.cookie-banner .cookie-message {
  font-size: 0.92rem;
  line-height: 1.5;
  color: var(--sw-muted-dark);
  margin-bottom: 1rem;
}

.cookie-banner .cookie-message a {
  color: var(--sw-accent-strong);
}

.cookie-banner .btn + .btn {
  margin-left: 0.5rem;
}

.btn-accept-cookie, .btn-reject-cookie {
  display: inline-block;
}

.btn-accept-cookie {
  background: var(--sw-heading-dark);
  color: #fff;
  border: 0;
  padding: 0.65rem 1.4rem;
  font-size: 0.92rem;
  font-weight: 500;
  border-radius: 4px;
  transition: 0.3s;
}

.btn-accept-cookie:hover {
  background: var(--sw-accent-strong);
  color: #fff;
}

.btn-reject-cookie {
  background: transparent;
  border: 1px solid rgba(35, 35, 43, 0.18);
  color: var(--sw-muted-dark);
  padding: 0.65rem 1.4rem;
  font-size: 0.92rem;
  border-radius: 4px;
  font-weight: 500;
  transition: 0.3s;
}

.btn-reject-cookie:hover {
  background: rgba(35, 35, 43, 0.05);
  color: var(--sw-heading-dark);
}

.no-scroll {
  overflow: hidden;
}

.back-to-top {
  position: fixed;
  bottom: 1.4rem;
  right: 1.4rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--sw-accent);
  color: #111;
  border: 0;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(194, 148, 66, 0.25);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  z-index: 1020;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: var(--sw-accent-strong);
  color: #fff;
}

@media (max-width: 575.98px) {
  .section-padding {
    padding: 3.8rem 0;
  } 
  .hero-section {
    min-height: 92vh;
  }

  .hero-indicators {
    margin-top: 1rem;
  }

  .stat-item .stat-number {
    font-size: 2.3rem;
  }

  .footer .footer-bottom {
    flex-direction: column;
    gap: 1rem;
  }

  .footer .footer-bottom .legal-links a {
    margin-left: 0;
    margin-right: 0.8rem;
    font-size: 0.85rem;
  }
}

@media (max-width: 991.98px) {
  .navbar-collapse {
    background: #ffffff;
    padding: 0.8rem 1.2rem;
    text-align: left;
  }
}

@media (min-width: 992px) {
  .navbar-collapse {
    text-align: center;
  }
}

.text-ink {
  color: var(--sw-ink);
}

.price-list-offer {
  font-size: 0.9rem;
}

.sidebar-gallery-item img {
  width: 100px;
  height: 80px;
  object-fit: cover;
  border-radius: 0.4rem;
}

[data-aos='slide-fade-up']::before {
  content: '';
  position: absolute;
  inset: 0;
  transition: transform 0.6s;
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.4rem;
}
/* ===== QA accessibility overrides ===== */
/* Force dark hero background so light hero text keeps high contrast */
main section[style*="linear-gradient"] {
  background-color: #1b1f2a !important;
}

/* Hero accent pill: light gold on dark */
main section .d-inline-block.rounded-pill.fw-semibold.text-uppercase.mb-4 {
  color: #e6c98e !important;
  background: rgba(201, 163, 106, 0.2) !important;
}

/* Hero 'Call Atelier' CTA: dark text on gold for AA contrast */
a[style*="background:#c9a36a"] {
  color: #241b09 !important;
}

/* ===== Price / service page heading contrast on dark sections ===== */
main section[style*="linear-gradient"] h1,
main section[style*="linear-gradient"] h2,
main section[style*="linear-gradient"] h3,
main section[style*="linear-gradient"] h4,
main section[style*="linear-gradient"] h5,
main section[style*="linear-gradient"] h6 {
  color: #ffffff !important;
}

main section[style*="background:#1b1f2a"] h1,
main section[style*="background:#1b1f2a"] h2,
main section[style*="background:#1b1f2a"] h3,
main section[style*="background:#1b1f2a"] h4,
main section[style*="background:#1b1f2a"] h5,
main section[style*="background:#1b1f2a"] h6 {
  color: #ffffff !important;
}

/* ===== QA contrast overrides (round 2) ===== */
/* Force light text on dark / inline-gradient hero-style sections so headings
   (which the global CSS renders dark) stay readable. */
main section[style*="linear-gradient"] h1,
main section[style*="linear-gradient"] h2,
main section[style*="linear-gradient"] h3,
main section[style*="linear-gradient"] h4,
main section[style*="linear-gradient"] h5,
main section[style*="linear-gradient"] h6,
main section[style*="linear-gradient"] p,
main section[style*="background:#1b1f2a"] h1,
main section[style*="background:#1b1f2a"] h2,
main section[style*="background:#1b1f2a"] h3,
main section[style*="background:#1b1f2a"] h4,
main section[style*="background:#1b1f2a"] h5,
main section[style*="background:#1b1f2a"] h6,
main section[style*="background:#1b1f2a"] p {
  color: #ffffff !important;
}

/* Solid dark feature tiles on the "Why" section so light text contrasts. */
main section .bg-white.bg-opacity-10 {
  background-color: #232936 !important;
}

/* Hero accent pill: light text on a solid dark pill (AA). */
main section .d-inline-block.rounded-pill.fw-semibold {
  color: #f0d9a8 !important;
  background-color: rgba(15, 18, 26, 0.72) !important;
}

/* Blog teaser links sitting on light cards: darker gold for AA. */
a.small.fw-semibold.text-uppercase[style*="color:#c9a36a"] {
  color: #7a5420 !important;
}

/* Newsletter subscribe button on gold: dark text for AA. */
button[style*="background:#c9a36a"] {
  color: #241b09 !important;
}

/* Footer "Get Directions" strip: solid dark background with white text. */
.site-footer a.d-block.text-center {
  background-color: #14171f !important;
  color: #ffffff !important;
}

/* ===== QA contrast fixes for thank-you page section labels ===== */
/* Darken uppercase gold section labels that sit on light (#f9f6f2 / white) backgrounds */
span.text-uppercase.small.fw-semibold[style*="color:#c9a36a"] {
  color: #6d4a1f !important;
}

/* Darken the gold "Read article" labels used on journal cards (light backgrounds) */
span.fw-semibold.text-uppercase.small[style*="color:#a9854e"] {
  color: #6d4a1f !important;
}
