/* ==========================================================================
   Pelnia Ciala - Nature-Inspired Redesign
   Overrides Mixlax template (style.css + theme-color1.css)
   Design: calm, organic, softly ethnic, subtly ritualistic, harmonious
   ========================================================================== */

/* ==========================================================================
   1. CSS Custom Properties / Root
   ========================================================================== */
:root {
  /* Color palette */
  --theme-color: #BC6534;
  --sand: #E5CEBA;
  --cream: #EFE7DF;
  --olive: #B2A46A;
  --dark: #3D3229;
  --body-text: #5A4D42;

  /* Override Mixlax variables */
  --title-color: #3D3229;
  --body-color: #5A4D42;
  --smoke-color: #EFE7DF;
  --light-smoke-color: #F5F0EB;
  --dark-color: #3D3229;
  --border-color: rgba(61, 50, 41, 0.12);

  /* Typography */
  --theme-font1: 'Cormorant Garamond', serif;
  --theme-font2: 'Nunito Sans', sans-serif;

  /* Fluid Typography */
  --text-xs: clamp(0.75rem, 0.71rem + 0.2vw, 0.875rem);
  --text-sm: clamp(0.875rem, 0.83rem + 0.22vw, 1rem);
  --text-base: clamp(1rem, 0.96rem + 0.22vw, 1.125rem);
  --text-lg: clamp(1.125rem, 1.08rem + 0.22vw, 1.25rem);
  --text-xl: clamp(1.25rem, 1.16rem + 0.43vw, 1.5rem);
  --text-2xl: clamp(1.5rem, 1.36rem + 0.71vw, 1.875rem);
  --text-3xl: clamp(1.875rem, 1.66rem + 1.09vw, 2.5rem);
  --text-4xl: clamp(2.25rem, 1.9rem + 1.74vw, 3.25rem);
  --text-5xl: clamp(2.75rem, 2.23rem + 2.61vw, 4.25rem);

  /* Fluid Spacing */
  --space-3xs: clamp(0.25rem, 0.23rem + 0.11vw, 0.3125rem);
  --space-2xs: clamp(0.5rem, 0.46rem + 0.22vw, 0.625rem);
  --space-xs: clamp(0.75rem, 0.68rem + 0.33vw, 0.9375rem);
  --space-s: clamp(1rem, 0.91rem + 0.43vw, 1.25rem);
  --space-m: clamp(1.5rem, 1.37rem + 0.65vw, 1.875rem);
  --space-l: clamp(2rem, 1.83rem + 0.87vw, 2.5rem);
  --space-xl: clamp(3rem, 2.74rem + 1.3vw, 3.75rem);
  --space-2xl: clamp(4rem, 3.65rem + 1.74vw, 5rem);
  --space-3xl: clamp(6rem, 5.48rem + 2.61vw, 7.5rem);

  /* Radii */
  --radius-xs: 4px;
  --radius-sm: 12px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-pill: 999px;

  /* Motion — purpose-driven timing scale */
  --t-instant: 0.1s ease;     /* focus rings, active states */
  --t-fast: 0.2s ease;        /* hover color / shadow feedback */
  --t-normal: 0.35s ease;     /* card lifts, interactive transforms */
  --t-entrance: 0.6s ease-out; /* scroll-reveal entrances only */

  /* Legacy aliases (used throughout, kept for compat) */
  --transition-fast: var(--t-fast);
  --transition-med: var(--t-normal);
  --transition-slow: var(--t-normal);
  --focus-ring: 0 0 0 3px rgba(188, 101, 52, 0.25);
}

html {
  scroll-behavior: smooth;
}

::selection {
  background: #BC6534;
  color: #ffffff;
}

body {
  background-color: var(--cream);
  color: var(--body-text);
  font-family: var(--theme-font2);
  letter-spacing: 0.015em;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ==========================================================================
   2. Typography Overrides
   ========================================================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--theme-font1);
  color: var(--dark);
  font-weight: 500;
  line-height: 1.2;
}

h1 { font-weight: 400; font-size: var(--text-5xl); }
h2 { font-weight: 500; font-size: var(--text-4xl); }
h3 { font-weight: 500; font-size: var(--text-3xl); }
h4 { font-weight: 500; font-size: var(--text-2xl); }
h5 { font-weight: 600; font-size: var(--text-xl); }
h6 { font-weight: 600; font-size: var(--text-lg); }

.sec-title-style1 {
  font-family: var(--theme-font1);
  font-weight: 500;
  position: relative;
  padding-bottom: var(--space-s);
  font-size: var(--text-4xl);
}

.sec-title-style1::after {
  content: '';
  display: block;
  width: 60px;
  height: 2px;
  background: var(--olive);
  margin: var(--space-xs) auto 0;
}

.sec-subtitle-style1 {
  font-style: italic;
  color: var(--olive);
  font-family: var(--theme-font1);
  letter-spacing: 0.04em;
}

/* Mixlax legacy class — means "display/decorative font" (was Syne) */
.text-font2 {
  font-family: var(--theme-font1);
  font-style: italic;
}

p {
  color: var(--body-text);
  line-height: 1.8;
}

a {
  color: var(--theme-color);
  transition: color var(--transition-slow);
}

a:hover {
  color: #a5572c;
}

/* ==========================================================================
   3. Buttons (.vs-btn)
   ========================================================================== */
.vs-btn {
  border-radius: var(--radius-pill) !important;
  background-color: var(--theme-color) !important;
  color: #ffffff !important;
  padding: 14px 36px !important;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 13px;
  font-family: var(--theme-font2);
  font-weight: 600;
  transition: background-color var(--t-fast),
    box-shadow var(--t-fast),
    transform var(--t-normal),
    color var(--t-fast),
    border-color var(--t-fast);
  box-shadow: 0 4px 16px rgba(188, 101, 52, 0.2);
  border: none !important;
  overflow: hidden;
}

.vs-btn:hover {
  background-color: #a5572c !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(188, 101, 52, 0.35);
  color: #ffffff !important;
}

/* Remove Mixlax wave/shape animation and icon color transitions */
.vs-btn .vs-btn-shape,
.vs-btn .vs-btn-shape span,
.vs-btn .shape span {
  display: none !important;
}

.vs-btn .vs-btn-text {
  position: relative;
  z-index: 2;
}

.vs-btn .vs-btn-icon {
  position: relative;
  z-index: 2;
  background: transparent !important;
  color: inherit !important;
  width: auto !important;
  height: auto !important;
  line-height: inherit !important;
  margin-left: 0 !important;
  transition: none !important;
}

.vs-btn i {
  margin-left: 8px;
  color: inherit !important;
  transition: none !important;
}

/* Override wave-style padding (Mixlax adds asymmetric padding for icon circle) */
.vs-btn[class*="wave"] {
  padding: 14px 36px !important;
}

/* Button group layout */
.vs-btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.vs-btn-group .vs-btn {
  margin: 0 !important;
}

/* Outline variant */
.vs-btn[class*="outline"] {
  background-color: transparent !important;
  border: 2px solid var(--theme-color) !important;
  color: var(--theme-color) !important;
}

.vs-btn[class*="outline"]:hover {
  background-color: var(--theme-color) !important;
  color: #ffffff !important;
}

/* ==========================================================================
   4. Header
   ========================================================================== */
.header-top-layout1 {
  background: var(--dark);
  padding: 0 !important;
}

.header-top-layout1 .info-links {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 6px 0;
  gap: 16px;
}

.header-top-layout1 .info-links li {
  font-size: 13px;
  white-space: nowrap;
}

.header-top-layout1 .social-links {
  display: inline-flex;
  align-items: center;
  margin: 0;
  padding: 0;
}

.header-top-layout1 .row {
  align-items: center;
  min-height: 0;
}

.sticky-header-wrap,
.sticky-active.active {
  background: rgba(239, 231, 223, 0.95) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.main-menu > ul > li > a,
.main-menu ul li a {
  font-family: var(--theme-font2);
  font-size: 17px;
  letter-spacing: 0.05em;
  color: var(--dark);
  font-weight: 500;
}

.main-menu > ul > li > a:hover,
.main-menu ul li a:hover {
  color: var(--theme-color);
}

.main-menu ul li ul.sub-menu {
  background: var(--cream);
  border-radius: 12px;
  box-shadow: 0 12px 40px rgba(61, 50, 41, 0.12);
  border: 1px solid rgba(178, 164, 106, 0.15);
  overflow: hidden;
}

.main-menu ul li ul.sub-menu li a {
  font-family: var(--theme-font2);
  font-size: 15px;
  color: var(--body-text);
}

.main-menu ul li ul.sub-menu li a:hover {
  color: var(--theme-color);
  background-color: rgba(188, 101, 52, 0.06);
}

/* ==========================================================================
   Font Awesome fixes
   ========================================================================== */
@font-face {
  font-family: "Font Awesome 5 Brands";
  font-style: normal;
  font-weight: 400;
  font-display: block;
  src: url("../fonts/fa-brands-400.woff2") format("woff2"), url("../fonts/fa-brands-400.woff") format("woff");
}

.fab {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fal,
.far {
  font-weight: 900;
}

/* ==========================================================================
   5. Hero (.vs-hero-wrapper)
   ========================================================================== */
.vs-hero-wrapper {
  min-height: 75vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  position: relative;
}

.vs-hero-wrapper::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(61, 50, 41, 0.3), rgba(61, 50, 41, 0.5));
  z-index: 1;
  pointer-events: none;
}

.vs-hero-wrapper > * {
  position: relative;
  z-index: 2;
}

.hero-title,
h1.hero-title {
  font-family: var(--theme-font1) !important;
  font-weight: 400 !important;
  letter-spacing: 0.08em;
  text-shadow: 0 2px 20px rgba(61, 50, 41, 0.3);
  color: #ffffff;
}

.hero-subtitle {
  font-family: var(--theme-font2) !important;
  font-weight: 300;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.9);
}

.hero-sygnet {
  opacity: 0.8;
  filter: brightness(2);
}

/* ==========================================================================
   6. Section Titles
   ========================================================================== */
.section-title {
  margin-bottom: var(--space-2xl);
}

.sec-bg-icon1 {
  opacity: 0.15;
}

/* ==========================================================================
   7. About Sections
   ========================================================================== */
.about-image-box1 .big-img img {
  border-radius: 40%;
}

.about-image-box4 .big-img img {
  border-radius: 40%;
}

.about-image-box4 .experance-box .box-content {
  border-radius: 50%;
  aspect-ratio: 1;
}

.text-box1 {
  border-left: 3px solid var(--olive) !important;
}

.inner-label {
  background-color: var(--theme-color) !important;
  border-radius: 50%;
  color: #ffffff;
}

/* About content spacing */
@media (min-width: 992px) {
  .about-content-box1,
  .about-content-box4 {
    padding-left: 30px;
  }
}

/* ==========================================================================
   8. Service Cards
   ========================================================================== */
.vs-service-layout1 .vs-service {
  background: #ffffff;
  border-radius: 24px;
  padding: 36px 28px;
  box-shadow: 0 4px 24px rgba(61, 50, 41, 0.06);
  transition: transform var(--t-normal), box-shadow var(--t-fast);
  border: none;
  margin: 0 10px;
  height: 100%;
}

.vs-service-layout1 .vs-service:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(61, 50, 41, 0.12);
}

.vs-service-layout1 .service-icon .icon {
  border-radius: 50% !important;
  background-color: var(--cream) !important;
  box-shadow: 0 4px 16px rgba(61, 50, 41, 0.08);
}

.vs-service-layout1 .service-icon .bg-icon {
  display: none !important;
}

.vs-service-layout1 .service-title,
.vs-service-layout1 .vs-service h3 {
  font-family: var(--theme-font1);
  font-weight: 500;
}

/* ==========================================================================
   9. Gallery
   ========================================================================== */
.vs-gallery-layout1 .vs-gallery,
.vs-gallery-layout2 .vs-gallery {
  border-radius: 16px;
  overflow: hidden;
}

.vs-gallery-layout2 .vs-gallery::before,
.vs-gallery-layout2 .vs-gallery::after {
  border-radius: 16px;
  background-image: linear-gradient(
    45deg,
    rgba(61, 50, 41, 0.7) 5%,
    rgba(188, 101, 52, 0.6) 100%
  ) !important;
}

.vs-gallery-layout2 .vs-gallery .icon-btn,
.vs-gallery-layout1 .vs-gallery-btn {
  border-radius: 50%;
  background: rgba(188, 101, 52, 0.9) !important;
  color: #ffffff;
}

.vs-gallery-layout2,
.vs-gallery-layout1 {
  background: transparent;
}

/* ==========================================================================
   10. CTA / Contact Section
   ========================================================================== */
.cta-content-box {
  background: rgba(61, 50, 41, 0.6);
  border-radius: 24px;
  padding: 40px;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

/* ==========================================================================
   11. Footer — streamlined
   ========================================================================== */

/* --- divider wave --- */
.site-footer__divider {
  line-height: 0;
  margin-top: -1px;
}
.site-footer__divider svg {
  display: block;
  width: 100%;
  height: 36px;
}

/* --- body section --- */
.site-footer__body {
  background-color: var(--dark);
  color: var(--sand);
  padding: 48px 0 36px;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 0.8fr 0.8fr;
  gap: 40px;
  align-items: start;
}

@media (max-width: 991px) {
  .site-footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}
@media (max-width: 575px) {
  .site-footer__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .site-footer__body {
    padding: 36px 0 28px;
  }
}

/* brand column */
.site-footer__logo img {
  height: 80px;
  display: block;
  margin-bottom: 14px;
}

.site-footer__tagline {
  font-size: 0.9rem;
  line-height: 1.65;
  color: rgba(229, 206, 186, 0.75);
  max-width: 320px;
}

/* headings */
.site-footer__heading {
  font-family: var(--theme-font1);
  font-weight: 500;
  font-size: 1.15rem;
  letter-spacing: 0.025em;
  color: var(--cream);
  margin-bottom: 12px;
  position: relative;
  padding-bottom: 10px;
}
.site-footer__heading::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 28px;
  height: 2px;
  background: var(--olive);
  border-radius: 1px;
}

/* contact list */
.site-footer__contact-list {
  list-style: none;
  padding: 0;
  margin: 0 0 10px;
}
.site-footer__contact-list li {
  margin-bottom: 6px;
}
.site-footer__contact-list a {
  color: var(--sand);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.25s ease;
}
.site-footer__contact-list a i {
  width: 18px;
  margin-right: 8px;
  font-size: 0.8rem;
  opacity: 0.6;
}
.site-footer__contact-list a:hover {
  color: #E8A882;
}

.site-footer__address {
  font-size: 0.85rem;
  line-height: 1.55;
  color: rgba(229, 206, 186, 0.65);
}

/* opening hours */
.site-footer__hours-line {
  font-size: 0.9rem;
  color: var(--sand);
  margin-bottom: 2px;
}
.site-footer__hours-time {
  font-family: var(--theme-font1);
  font-size: 1.1rem;
  color: var(--cream);
  font-weight: 500;
}

/* friend links */
.site-footer__link-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.site-footer__link-list li {
  margin-bottom: 5px;
}
.site-footer__link-list a {
  color: var(--sand);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.25s ease;
}
.site-footer__link-list a:hover {
  color: #E8A882;
}

/* --- bottom bar --- */
.site-footer__bottom {
  background-color: #2D241D;
  padding: 14px 0;
}

.site-footer__bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
@media (max-width: 575px) {
  .site-footer__bottom-inner {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
}

.site-footer__copyright {
  font-size: 0.8rem;
  color: #9B8E82;
  margin: 0;
  letter-spacing: 0.02em;
}

.site-footer__social {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 8px;
}
.site-footer__social a {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(229, 206, 186, 0.25);
  border-radius: 50%;
  color: var(--sand);
  font-size: 0.85rem;
  transition: background-color var(--t-fast),
    border-color var(--t-fast),
    color var(--t-fast);
}
.site-footer__social a:hover {
  background-color: var(--theme-color);
  border-color: var(--theme-color);
  color: #fff;
}

/* Keep legacy social-links for header top-bar */
.header-wrapper .social-links a {
  border: 1px solid rgba(229, 206, 186, 0.3) !important;
  border-radius: 50% !important;
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background-color var(--transition-slow),
    border-color var(--transition-slow),
    color var(--transition-slow);
  background: transparent;
}
.header-wrapper .social-links a:hover {
  background-color: var(--theme-color) !important;
  border-color: var(--theme-color) !important;
  color: #ffffff !important;
}

/* ==========================================================================
   12. Breadcrumb
   ========================================================================== */
.breadcumb-wrapper,
.breadcumb-layout1 {
  padding: 100px 0 80px;
  position: relative;
}

.breadcumb-wrapper::before {
  background: linear-gradient(
    to bottom,
    rgba(61, 50, 41, 0.4),
    rgba(61, 50, 41, 0.6)
  ) !important;
}

.breadcumb-title {
  font-family: var(--theme-font1);
  font-weight: 400;
  letter-spacing: 0.06em;
  color: #ffffff;
}

.breadcumb-menu-style1 li,
.breadcumb-menu-style1 a,
.breadcumb-menu-style1 span {
  font-family: var(--theme-font2);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ==========================================================================
   13. Price Table
   ========================================================================== */
.price-table-wrapper {
  border-radius: var(--radius-md);
  overflow: hidden auto;
  box-shadow: 0 4px 24px rgba(61, 50, 41, 0.08);
  -webkit-overflow-scrolling: touch;
}

.price-table-wrapper table {
  border-collapse: collapse;
  width: 100%;
  min-width: 540px;
}

thead.bg-theme,
.price-table-wrapper thead {
  background-color: var(--theme-color) !important;
}

thead th,
.price-table-wrapper thead th {
  font-family: var(--theme-font1);
  letter-spacing: 0.05em;
  padding: 18px 24px;
  color: #ffffff;
  font-weight: 500;
  border: none;
}

.price-table-wrapper tbody tr:nth-child(even) {
  background-color: var(--cream);
}

.price-table-wrapper tbody tr:nth-child(odd) {
  background-color: #ffffff;
}

.price-table-wrapper tbody td {
  padding: 16px 24px;
  border: none;
  border-bottom: 1px solid rgba(178, 164, 106, 0.15);
  color: var(--body-text);
}

/* ==========================================================================
   14. Divider
   ========================================================================== */
.divider-style1 {
  position: relative;
}

.divider-organic .divider-line {
  display: block;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--olive), transparent);
  margin: 0 auto;
  width: 80%;
}

.divider-style1 .divider-icon {
  background: var(--cream);
  position: relative;
  z-index: 1;
}

.divider-style1 .divider-icon::before {
  background-image: linear-gradient(
    to right,
    rgba(255, 255, 255, 0) 0,
    var(--olive) 50%,
    rgba(255, 255, 255, 0) 100%
  ) !important;
}

/* ==========================================================================
   15. Decorative Elements
   ========================================================================== */
.flying-body-decor {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  opacity: 0.07;
  filter: sepia(0.2) saturate(0.8);
}

.flying-body-decor--hero {
  left: 5%;
  bottom: 10%;
  width: 180px;
  transform: rotate(10deg);
}

.flying-body-decor--footer {
  right: 5%;
  top: 10%;
  width: 200px;
  transform: rotate(-15deg);
}

.footer-wave {
  line-height: 0;
  margin-top: -1px;
}

.footer-wave svg {
  display: block;
  width: 100%;
  height: 60px;
}

.footer-redesign {
  position: relative;
  overflow: hidden;
}

.header-logo {
  margin: 10px 0;
}

.site-logo--header {
  height: 90px;
}

.site-logo--footer {
  height: 110px;
}

.divider-style1 .divider-icon img {
  height: 52px;
  width: auto;
  margin-top: -6px;
}

/* Tone down Mixlax brand gradients */
.vs-about-layout3::before {
  background-image: linear-gradient(
    to top,
    var(--cream) 0%,
    rgba(178, 164, 106, 0.1) 100%
  ) !important;
}

.vs-brand-layout1::before {
  background-image: linear-gradient(
    to bottom,
    var(--cream) 0%,
    rgba(178, 164, 106, 0.1) 100%
  ) !important;
}

.vs-brand-layout2::before {
  background-image: linear-gradient(
    to bottom,
    rgba(178, 164, 106, 0.1) 0%,
    var(--cream) 30%,
    rgba(178, 164, 106, 0.1) 120%
  ) !important;
}

/* ==========================================================================
   17. Scroll-to-Top
   ========================================================================== */
.scrollToTop {
  border-radius: 50% !important;
  width: 48px;
  height: 48px;
  background-color: var(--theme-color) !important;
  box-shadow: 0 4px 12px rgba(188, 101, 52, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color var(--t-fast),
    box-shadow var(--t-fast),
    transform var(--t-normal),
    color var(--t-fast);
}

.scrollToTop:hover {
  background-color: #a5572c !important;
  box-shadow: 0 6px 20px rgba(188, 101, 52, 0.4);
  transform: translateY(-3px);
}

.scrollToTop i {
  color: #ffffff;
}

/* ==========================================================================
   18. Mobile Menu
   ========================================================================== */
.vs-menu-wrapper .vs-menu-area {
  background: var(--cream) !important;
}

.vs-mobile-menu ul li a {
  font-family: var(--theme-font1);
  font-size: 18px;
  color: var(--dark);
  font-weight: 500;
}

.vs-mobile-menu ul li a:hover {
  color: var(--theme-color);
}

.vs-menu-toggle {
  color: var(--theme-color);
  border-color: var(--theme-color);
}

/* ==========================================================================
   19. Forms and Inputs
   ========================================================================== */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="date"],
textarea,
select,
.form-control {
  border-radius: var(--radius-sm) !important;
  border: 1px solid var(--sand) !important;
  background: #ffffff !important;
  font-family: var(--theme-font2);
  color: var(--body-text);
  transition: border-color var(--transition-med), box-shadow var(--transition-med);
  padding: 12px 18px;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="number"]:focus,
input[type="date"]:focus,
textarea:focus,
select:focus,
.form-control:focus {
  border-color: var(--theme-color) !important;
  box-shadow: 0 0 0 3px rgba(188, 101, 52, 0.1) !important;
}

:where(a, button, .vs-btn, .icon-btn, .scrollToTop, .vs-menu-toggle, .social-links a, .wpml-ls-link):focus-visible {
  outline: 2px solid var(--theme-color);
  outline-offset: 3px;
  box-shadow: var(--focus-ring);
}

input:focus-visible,
textarea:focus-visible,
select:focus-visible,
.form-control:focus-visible {
  outline: 2px solid var(--theme-color);
  outline-offset: 2px;
  box-shadow: var(--focus-ring);
}

/* ==========================================================================
   20. Spacing
   ========================================================================== */
.space,
.space-top {
  padding-top: var(--space-3xl);
}

.space,
.space-bottom {
  padding-bottom: var(--space-3xl);
}

/* ==========================================================================
   21. Animations
   ========================================================================== */
.wow {
  transition-duration: 0.6s;
  animation-duration: 0.6s;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  /* Kill decorative / vestibular motion (scroll reveals, entrance animations) */
  .wow {
    animation-duration: 0.01ms !important;
    animation-delay: 0ms !important;
    transition-duration: 0.01ms !important;
    transition-delay: 0ms !important;
    opacity: 1 !important;
    transform: none !important;
    visibility: visible !important;
  }

  /* Preserve functional feedback at a reduced, non-vestibular duration */
  :root {
    --t-instant: 0.1s ease;
    --t-fast: 0.15s ease;
    --t-normal: 0.15s ease;
    --t-entrance: 0.01ms ease;
  }
}

/* ==========================================================================
   22. Utility / Misc Overrides
   ========================================================================== */

/* Theme colors */
.bg-theme {
  background-color: var(--theme-color) !important;
}

.text-theme {
  color: var(--theme-color) !important;
}

.bg-light-theme {
  background-color: rgba(188, 101, 52, 0.06) !important;
}

.bg-light-smoke {
  background-color: var(--cream) !important;
}

.bg-solid-theme {
  background-color: rgba(188, 101, 52, 0.1) !important;
}

.border-light-theme {
  border-color: rgba(178, 164, 106, 0.3) !important;
}

/* Subtle default image rounding — scoped to content images only */
.about-image-box1 img,
.about-image-box4 img,
.vs-gallery img,
.offer-banner-style1 img,
.offer-banner-style2 img,
.blog-content img,
.vs-team img {
  border-radius: 4px;
}

/* Banner overrides */
.offer-banner-style1,
.offer-banner-style2 {
  border-radius: 16px;
  overflow: hidden;
}

.offer-banner-style1 .banner-content,
.offer-banner-style2 .banner-content {
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}

/* Widget styling */
.widget {
  background-color: rgba(178, 164, 106, 0.08) !important;
  border-radius: 16px;
}

/* Footer widgets: transparent over dark background */
.footer-wrapper .widget {
  background-color: transparent !important;
}

/* Icon buttons */
.icon-btn {
  border-radius: 50%;
  transition: background-color var(--t-fast),
    color var(--t-fast),
    box-shadow var(--t-fast),
    transform var(--t-normal);
}

.icon-btn:hover {
  background-color: var(--theme-color) !important;
  color: #ffffff;
}

/* Override Mixlax box shadows with warm tones */
.vs-service-layout2 .vs-service {
  box-shadow: 0 4px 24px rgba(61, 50, 41, 0.06);
  border-color: rgba(178, 164, 106, 0.2);
  border-radius: 24px;
}

.vs-service-layout2 .vs-service:hover {
  box-shadow: 0 12px 40px rgba(61, 50, 41, 0.12);
}

.vs-blog-layout1 .blog-content {
  box-shadow: 0 8px 32px rgba(61, 50, 41, 0.1);
  border-radius: 16px;
}

.vs-team-layout1 .social-links a {
  box-shadow: 0 4px 12px rgba(61, 50, 41, 0.1);
}

.vs-team-layout2 .vs-team {
  box-shadow: 0 8px 32px rgba(61, 50, 41, 0.08);
  border-radius: 16px;
  overflow: hidden;
}

/* Hero button override */
.vs-hero-wrapper .vs-btn {
  background-color: var(--theme-color) !important;
  border-radius: 50px !important;
  padding: 14px 36px !important;
  width: auto !important;
  height: auto !important;
  line-height: 1.5 !important;
  font-size: 13px !important;
  box-shadow: 0 4px 16px rgba(188, 101, 52, 0.2) !important;
}

.vs-hero-wrapper .vs-btn .vs-btn-icon {
  background-color: transparent !important;
  box-shadow: none !important;
  width: auto !important;
  height: auto !important;
  margin-left: 0 !important;
  font-size: inherit !important;
  display: inline !important;
}

.hero-box1 {
  box-shadow: 0 8px 32px rgba(61, 50, 41, 0.3);
}

/* Price list style override */
.price-list-style1 {
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(61, 50, 41, 0.08);
}

/* Testimonial warm shadow */
.vs-testimonial-layout3 .vs-testimonial {
  box-shadow: 0 -10px 40px 0 rgba(61, 50, 41, 0.1);
  border-radius: 16px;
}

/* FAQ styling */
.vs-faq-layout1 .vs-faq-title::before {
  box-shadow: 0 4px 16px rgba(61, 50, 41, 0.1);
}

/* Link button */
.link-btn.text-theme:hover {
  color: #a5572c !important;
}

/* Counter/stats styling */
.vs-counter-layout1 .media-icon .icon-btn {
  background-color: var(--cream);
}

/* ==========================================================================
   23. Linen Texture Overlay (ritual space atmosphere)
   ========================================================================== */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 99;
  opacity: 0.025;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px 256px;
}

/* ==========================================================================
   24. Organic Section Edges
   ========================================================================== */
/* Hero: curved bottom edge */
.vs-hero-wrapper::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 60px;
  background: var(--cream);
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
  z-index: 3;
}

/* Breadcrumb: curved bottom edge */
.breadcumb-wrapper::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 40px;
  background: var(--cream);
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
  z-index: 3;
}

/* CTA section: curved top edge */
.vs-cta-wrapper::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 40px;
  background: var(--cream);
  border-radius: 0 0 50% 50% / 0 0 100% 100%;
  z-index: 3;
}

/* When CTA directly follows breadcrumb hero, hide duplicate curve */
.breadcumb-wrapper + .vs-cta-wrapper::before {
  display: none;
}

.vs-cta-wrapper {
  position: relative;
}

/* ==========================================================================
   26. Section Title Underline Refinement
   ========================================================================== */
.sec-title-style1::after {
  border-radius: 1px;
  background: linear-gradient(90deg, transparent, var(--olive), transparent);
  width: 80px;
}

/* ==========================================================================
   27. Organic Oval Photo Frames
   ========================================================================== */
.about-image-box1 .big-img img,
.about-image-box4 .big-img img {
  border-radius: 48% 52% 45% 55% / 55% 48% 52% 45%;
  transition: border-radius var(--t-normal);
}

.about-image-box1:hover .big-img img,
.about-image-box4:hover .big-img img {
  border-radius: 52% 48% 55% 45% / 45% 52% 48% 55%;
}

/* Service offering images — soft organic shape */
.vs-about-layout1 .about-image-box1 .big-img img {
  box-shadow: 0 12px 40px rgba(61, 50, 41, 0.15);
}

/* ==========================================================================
   28. Section Wave Transitions
   ========================================================================== */
/* Wave separator between sections */
.section-wave-top,
.section-wave-bottom {
  line-height: 0;
  overflow: hidden;
  position: relative;
  z-index: 2;
}

.section-wave-top svg,
.section-wave-bottom svg {
  display: block;
  width: 100%;
}

.section-wave-top svg {
  height: 40px;
}

.section-wave-bottom svg {
  height: 40px;
  margin-bottom: -1px;
}

/* Organic wave between about-intro and services */
.wave-about-to-services {
  margin-top: -1px;
}

/* Wave between services and about-person */
.wave-services-to-about {
  margin-top: -1px;
}

/* Wave between about-person and banners */
.wave-about-to-banners {
  margin-top: -1px;
}

/* ==========================================================================
   29. Moon / Nature Cycle Motifs
   ========================================================================== */
/* Crescent moon decorative element — appears near section titles */
.moon-motif {
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

.moon-motif::before {
  content: '';
  display: block;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  box-shadow: 12px -8px 0 0 var(--olive);
  opacity: 0.12;
}

/* Larger moon for hero-adjacent sections */
.moon-motif--lg::before {
  width: 90px;
  height: 90px;
  box-shadow: 16px -12px 0 0 var(--olive);
  opacity: 0.08;
}

/* Lotus divider — replaces plain lines between sections */
.lotus-divider {
  text-align: center;
  padding: 20px 0;
  position: relative;
}

.lotus-divider::before {
  content: '';
  position: absolute;
  left: 10%;
  right: 10%;
  top: 50%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--olive), transparent);
}

.lotus-divider img {
  position: relative;
  z-index: 1;
  background: var(--cream);
  padding: 0 16px;
  height: 40px;
  opacity: 0.6;
  filter: sepia(0.3) saturate(0.6);
}

/* ==========================================================================
   30. Additional Flying Body Placements
   ========================================================================== */
.flying-body-decor--about {
  left: -3%;
  top: 15%;
  width: 160px;
  transform: rotate(-20deg);
}

.flying-body-decor--services {
  right: 2%;
  bottom: 10%;
  width: 140px;
  transform: rotate(15deg) scaleX(-1);
}

.flying-body-decor--gallery {
  left: 2%;
  top: 5%;
  width: 130px;
  transform: rotate(-10deg);
}

.flying-body-decor--cta {
  right: 3%;
  top: 15%;
  width: 150px;
  transform: rotate(20deg);
}

/* flying-body-decor--footer removed — streamlined footer */

.flying-body-decor--breadcrumb {
  left: 5%;
  bottom: 10%;
  width: 180px;
  opacity: 0.08;
  transform: rotate(10deg);
}

/* ==========================================================================
   31. Enhanced Gallery Section
   ========================================================================== */
.vs-gallery-layout2 .vs-gallery img {
  transition: transform var(--t-normal);
}

.vs-gallery-layout2 .vs-gallery:hover img {
  transform: scale(1.05);
}

/* ==========================================================================
   32. Service Section Background Enhancement
   ========================================================================== */
.vs-service-wrapper.vs-service-layout1 {
  position: relative;
}

/* ==========================================================================
   34. Carousel Pagination Dots
   ========================================================================== */
.embla__dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  padding-top: 30px;
}

.embla__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid var(--olive);
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: background-color var(--t-fast), transform var(--t-fast);
}

.embla__dot:hover {
  background: rgba(178, 164, 106, 0.4);
}

.embla__dot--active {
  background: var(--olive);
  transform: scale(1.2);
}

/* ==========================================================================
   35. Responsive Refinements
   ========================================================================== */

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
  .hero-title,
  h1.hero-title {
    line-height: 1.15;
  }

  .sec-title-style1 {
    line-height: 1.2;
  }
}

/* Medium devices (tablets, up to 992px) */
@media (max-width: 992px) {
  .vs-hero-wrapper {
    min-height: 70vh;
  }

  .breadcumb-wrapper,
  .breadcumb-layout1 {
    padding: 80px 0 60px;
  }

  .cta-content-box {
    padding: 30px;
  }
}

/* Small devices (landscape phones, up to 768px) */
@media (max-width: 768px) {
  .hero-title,
  h1.hero-title {
    letter-spacing: 0.04em;
  }

  .hero-subtitle {
    letter-spacing: 0.1em;
  }

  .sec-title-style1 {
    padding-bottom: var(--space-xs);
  }

  .vs-service-layout1 .vs-service {
    padding: 30px 20px;
  }

  .cta-content-box {
    padding: 24px;
    border-radius: 16px;
  }
}

/* Tablet: hide flying body decorations */
@media (max-width: 991px) {
  .flying-body-decor--about,
  .flying-body-decor--services,
  .flying-body-decor--gallery,
  .flying-body-decor--cta,
  .flying-body-decor--footer,
  .flying-body-decor--breadcrumb {
    display: none;
  }

  .moon-motif,
  .moon-motif--lg {
    display: none;
  }

  .section-wave-top svg,
  .section-wave-bottom svg {
    height: 30px;
  }
}

/* Extra small devices (portrait phones, up to 576px) */
@media (max-width: 576px) {
  .vs-hero-wrapper {
    min-height: 60vh;
  }

  .hero-title,
  h1.hero-title {
    font-size: 28px !important;
  }

  .breadcumb-wrapper,
  .breadcumb-layout1 {
    padding: 60px 0 40px;
  }

  .lotus-divider img {
    height: 30px;
  }

  /* Price table horizontal scroll on mobile */
  .price-table-wrapper {
    position: relative;
    overflow-x: auto;
  }

  .price-table-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 32px;
    background: linear-gradient(to left, rgba(255, 255, 255, 0.6), transparent);
    pointer-events: none;
    border-radius: 0 16px 16px 0;
    z-index: 1;
  }

  .price-table-wrapper thead th,
  .price-table-wrapper tbody td {
    padding: 12px 16px;
    font-size: 14px;
  }
}

/* ===== IMMERSIVE SECTIONS ===== */

/* --- Gallery: Masonry Grid --- */
.gallery-masonry {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 280px;
  gap: 8px;
}
.gallery-masonry__item {
  overflow: hidden;
  border-radius: var(--radius-sm);
}
.gallery-masonry__item--wide {
  grid-column: span 2;
}
.gallery-masonry__item--tall {
  grid-row: span 2;
}
.gallery-masonry .vs-gallery {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
  border-radius: var(--radius-sm);
}
.gallery-masonry .gallery-masonry__link {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  color: inherit;
  text-decoration: none;
}
.gallery-masonry .gallery-masonry__link::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(61, 50, 41, 0.45);
  opacity: 0;
  transition: opacity var(--t-fast);
  border-radius: var(--radius-sm);
}
.gallery-masonry .vs-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--t-entrance);
}
.gallery-masonry .vs-gallery:hover img {
  transform: scale(1.06);
}
.gallery-masonry .gallery-masonry__icon {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translate(-50%, -50%);
  background: var(--white-color);
  opacity: 0;
  transition: opacity var(--t-fast), background-color var(--t-fast), color var(--t-fast);
  border-radius: 50%;
  color: var(--theme-color);
  z-index: 1;
}
.gallery-masonry .gallery-masonry__link:hover::after,
.gallery-masonry .gallery-masonry__link:focus-visible::after {
  opacity: 1;
}
.gallery-masonry .gallery-masonry__link:hover .gallery-masonry__icon,
.gallery-masonry .gallery-masonry__link:focus-visible .gallery-masonry__icon {
  opacity: 1;
}
.gallery-masonry .gallery-masonry__link:hover .gallery-masonry__icon {
  background: var(--theme-color);
  color: #fff;
}
@media (max-width: 767px) {
  .gallery-masonry {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 200px;
  }
  .gallery-masonry__item--wide {
    grid-column: span 2;
  }
}
@media (max-width: 480px) {
  .gallery-masonry {
    grid-template-columns: 1fr;
    grid-auto-rows: 220px;
  }
  .gallery-masonry__item--wide,
  .gallery-masonry__item--tall {
    grid-column: span 1;
    grid-row: span 1;
  }
}

/* --- CTA Split-Screen --- */
.cta-split-screen {
  min-height: 520px;
  overflow: hidden;
}
.cta-split-screen__inner {
  display: flex;
  min-height: 520px;
}
.cta-split-screen__hours {
  flex: 0 0 45%;
  background: var(--dark);
  color: var(--cream);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2.5rem, 5vw, 5rem) clamp(2rem, 4vw, 5rem);
}
.cta-split-screen__label {
  font-family: var(--theme-font2);
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--olive);
  margin-bottom: var(--space-m);
}
.cta-split-screen__time {
  font-family: var(--theme-font1);
  font-size: clamp(2.5rem, 5vw, 5rem);
  font-weight: 400;
  color: #ffffff;
  line-height: 1;
  margin-bottom: var(--space-s);
}
.cta-split-screen__days {
  font-family: var(--theme-font2);
  font-size: var(--text-base);
  color: rgba(239, 231, 223, 0.7);
  letter-spacing: 0.05em;
}
.cta-split-screen__photo {
  flex: 0 0 55%;
  position: relative;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  padding: clamp(2rem, 4vw, 4rem);
}
.cta-split-screen__photo::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(61, 50, 41, 0.7) 0%, transparent 60%);
  pointer-events: none;
}
.cta-split-screen__address {
  position: relative;
  z-index: 2;
  color: #fff;
}
.cta-split-screen__address p {
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: var(--space-m);
}
@media (max-width: 767px) {
  .cta-split-screen__inner {
    flex-direction: column;
  }
  .cta-split-screen__hours,
  .cta-split-screen__photo {
    flex: 0 0 auto;
    min-height: 280px;
  }
}

/* --- Footer: Statement Style --- */
.site-footer--statement .site-footer__statement {
  background: var(--dark);
  padding: clamp(3rem, 5vw, 5rem) 0;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.site-footer--statement .site-footer__logo {
  display: inline-block;
  margin-bottom: var(--space-m);
}
.site-footer--statement .site-footer__logo img {
  height: 56px;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}
.site-footer--statement .site-footer__tagline {
  color: rgba(239, 231, 223, 0.65);
  max-width: 520px;
  margin: 0 auto var(--space-l);
  font-size: var(--text-sm);
  line-height: 1.8;
}
.site-footer--statement .site-footer__social {
  display: flex;
  justify-content: center;
  gap: var(--space-m);
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-footer--statement .site-footer__social a {
  color: rgba(239, 231, 223, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(239, 231, 223, 0.15);
  border-radius: 50%;
  transition: all var(--t-fast);
}
.site-footer--statement .site-footer__social a:hover {
  color: var(--theme-color);
  border-color: var(--theme-color);
  background: rgba(188, 101, 52, 0.1);
}

/* Info band */
.site-footer__info-band {
  background: #2D241D;
  padding: clamp(2rem, 4vw, 3rem) 0;
}
.site-footer__info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-2xl);
}
.site-footer__info-col .site-footer__heading {
  color: var(--cream);
  font-size: var(--text-base);
  margin-bottom: var(--space-s);
  font-family: var(--theme-font1);
  font-weight: 500;
}
.site-footer__info-col a,
.site-footer__info-col p {
  color: rgba(239, 231, 223, 0.55);
  font-size: var(--text-sm);
  line-height: 1.8;
}
.site-footer__info-col a:hover {
  color: var(--theme-color);
}
.site-footer__hours-time {
  color: var(--olive) !important;
  font-weight: 600;
}
@media (max-width: 767px) {
  .site-footer__info-grid {
    grid-template-columns: 1fr;
    gap: var(--space-l);
  }
}

/* ===== IMMERSIVE SECTIONS REVIEW POLISH ===== */

/* Ensure masonry gallery items have consistent height */
.gallery-masonry .vs-gallery {
  position: relative !important;
}
.gallery-masonry .vs-gallery img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
}

/* Wide items: better visual proportion */
.gallery-masonry__item--wide {
  grid-column: span 2 !important;
}
.gallery-masonry__item--tall {
  grid-row: span 2 !important;
}

/* CTA split: ensure background-image data attr works */
/* Note: JS in main.ts handles data-vs-img by setting style.backgroundImage on elements
   with class="background-image". The .cta-split-screen__photo has both classes, so the
   background-image will be applied via inline style once JS initialises. These rules
   reinforce the presentation in case JS runs before or after paint. */
.cta-split-screen__photo[data-vs-img] {
  background-size: cover !important;
  background-position: center !important;
}
/* Fallback if JS hasn't loaded bg yet */
.cta-split-screen__photo {
  background-color: var(--dark) !important;
}

/* Statement footer: logo needs white filter */
.site-footer--statement .site-footer__logo img {
  filter: brightness(0) invert(1) !important;
  opacity: 0.88 !important;
  max-height: 52px !important;
  width: auto !important;
}

/* Info band column headings */
.site-footer__info-col .site-footer__heading {
  font-size: var(--text-sm) !important;
  text-transform: uppercase !important;
  letter-spacing: 0.1em !important;
  font-family: var(--theme-font2) !important;
  font-weight: 600 !important;
}

/* CTA split mobile: ensure stacking is clean */
@media (max-width: 767px) {
  .cta-split-screen__inner {
    flex-direction: column !important;
  }
  .cta-split-screen__hours,
  .cta-split-screen__photo {
    flex: 0 0 auto !important;
    min-height: 300px !important;
    width: 100% !important;
  }
}

/* Gallery masonry: ensure items don't overflow */
.gallery-masonry {
  overflow: hidden !important;
}
.gallery-masonry__item {
  overflow: hidden !important;
  min-height: 0 !important;
}

/* Address phone button in split CTA */
.cta-split-screen__address .vs-btn {
  margin-top: var(--space-s) !important;
}

/* Statement footer social circles: proper sizing */
.site-footer--statement .site-footer__social a {
  width: 42px !important;
  height: 42px !important;
  flex-shrink: 0 !important;
}

/* Info grid: readable on mobile */
@media (max-width: 767px) {
  .site-footer__info-grid {
    grid-template-columns: 1fr !important;
    gap: var(--space-l) !important;
  }
}

/* Hours label in statement footer */
.site-footer__hours-time {
  font-weight: 600 !important;
  color: var(--theme-color) !important;
}

/* Improve gallery section padding */
.gallery-masonry-section .container {
  padding-bottom: var(--space-m) !important;
}
