body {
  font-family: "Lato", "Helvetica Neue", Arial, sans-serif;
  margin: 0;
  color: #333;
  background: #ffffff;
  line-height: 1.6;
}

html {
  scroll-behavior: smooth;
}

.container {
  max-width: 1300px;
  margin: auto;
  padding: 0 20px;
}

h1,
h2,
h3 {
  font-family: "Playfair Display", serif;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: #111;
}

.btn-premium {
  display: inline-block;
  padding: 16px 40px;
  border-radius: 40px;
  background: linear-gradient(135deg, #a8d8f0, #7eb8d4);
  color: white;
  text-decoration: none;
  transition: .3s;
  font-weight: 700;
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(168, 216, 240, 0.4);
}

.btn-premium:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(168, 216, 240, 0.6);
}

.btn-premium::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: 0.5s;
}

.btn-premium:hover::after {
  left: 100%;
}

.hero {
  height: 90vh;
  background: linear-gradient(rgba(0, 0, 0, .4), rgba(0, 0, 0, .4));
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  color: white;
}

.hero-inner {
  max-width: 800px;
}

.hero h1 {
  font-size: 72px;
  margin-bottom: 24px;
  color: white;
  line-height: 1.1;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero p {
  font-size: 22px;
  margin-bottom: 40px;
  font-weight: 300;
  opacity: 0.9;
}

.scroll-down {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  font-size: 32px;
  animation: bounce 2s infinite;
  opacity: 0.8;
  cursor: pointer;
  z-index: 3;
  text-decoration: none;
}

@keyframes bounce {

  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translate(-50%, 0);
  }

  40% {
    transform: translate(-50%, -10px);
  }

  60% {
    transform: translate(-50%, -5px);
  }
}

:root {
  --color-bg: #ffffff;
  --color-text: #111;
  --accent: #a8d8f0;
  --muted: #f7f5f3;
}

.site-header {
  border-bottom: 1px solid #eee;
  background: var(--color-bg);
  position: relative
}

.site-header-inner {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 60px;
  padding: 14px 0;
  position: relative
}

.site-branding {
  display: flex;
  align-items: center;
  gap: 12px
}

.site-branding img {
  max-height: 110px;
  width: auto;
  display: block
}

.site-title {
  font-size: 18px;
  margin: 0;
  color: var(--color-text);
  font-weight: 600
}

.site-navigation {
  display: flex;
  align-items: center;
  margin-left: 0
}

.primary-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 28px;
  justify-content: flex-start
}

.primary-menu li a {
  color: var(--color-text);
  text-decoration: none;
  font-weight: 500;
  font-size: 25px;
  position: relative;
}

.primary-menu li a::after {
  content: '';
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 2px;
  bottom: -2px;
  left: 0;
  background-color: var(--accent);
  transform-origin: bottom right;
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.primary-menu li a:hover::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  font-size: 26px
}

.home .site-header {
  position: absolute;
  top: 20px;
  left: 0;
  width: 100%;
  background: transparent;
  border-bottom: none;
  z-index: 4
}

.home .site-header-inner {
  padding: 22px 20px
}

.home .primary-menu li a,
.home .menu-toggle,
.home .site-title {
  color: white
}

.home .primary-menu li a {
  color: white;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);
  font-size: 21px;
  letter-spacing: 0.2px
}

.home .primary-menu li a::after {
  background-color: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.home .primary-menu li a:hover {
  opacity: .95
}

.home .primary-menu {
  gap: 32px
}

.home .menu-toggle {
  font-size: 28px
}

body:not(.home) .site-header {
  position: relative;
  background: var(--color-bg);
  border-bottom: 1px solid #eee
}

@media (max-width:900px) {
  .site-branding img {
    max-height: 72px
  }

  .site-title {
    font-size: 16px
  }

  .home .menu-toggle {
    color: white;
    margin-left: auto
  }

  .menu-toggle {
    display: block
  }
}

.site-footer {
  background: #111;
  color: white;
  padding: 60px 0;
  margin-top: 0;
}

.site-footer p {
  margin: 0
}

.footer-meta {
  margin-top: 14px
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 18px
}

.footer-links li a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease;
}

.footer-links li a::before {
  content: '›';
  margin-right: 8px;
  color: var(--accent);
  font-size: 18px;
  line-height: 1;
  transition: transform 0.3s ease;
}

.footer-links li a:hover {
  text-decoration: none;
  color: white;
  transform: translateX(5px);
}

.footer-links li a:hover::before {
  transform: translateX(2px);
}

.hero {
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-size: cover;
  background-position: center
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(rgba(0, 0, 0, .35), rgba(0, 0, 0, .35))
}

.hero-inner {
  max-width: 720px;
  position: relative;
  z-index: 2
}

.hero--logo-only {
  height: 90vh;
  display: block
}

.hero--logo-only .hero-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 12px
}

.hero--logo-only .hero-logo img {
  max-height: 280px;
  width: auto;
  display: block
}

.hero--logo-only .hero-site-title {
  color: white;
  font-size: 28px;
  font-weight: 700
}

.hero-logo {
  position: absolute;
  top: 22px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 12px
}

.hero-logo img {
  max-height: 110px;
  width: auto;
  display: block
}

.hero-site-title {
  color: white;
  font-size: 24px;
  font-weight: 700
}

.hero h1 {
  font-size: 64px;
  margin-bottom: 20px
}

.hero p {
  font-size: 18px;
  margin-bottom: 24px
}

.btn-premium {
  background: linear-gradient(135deg, #a8d8f0, #7eb8d4)
}

.screen-reader-text {
  position: absolute !important;
  clip: rect(1px, 1px, 1px, 1px);
  width: 1px;
  height: 1px;
  overflow: hidden;
  padding: 0;
  border: 0;
  margin: -1px;
  white-space: nowrap
}

@media (max-width:900px) {
  .hero-logo img {
    max-height: 72px
  }

  .hero--logo-only .hero-logo img {
    max-height: 200px;
    width: 80vw;
    object-fit: contain;
  }

  .hero-logo {
    top: 14px
  }

  .hero-site-title {
    font-size: 18px
  }
}

@media (max-width: 900px) {
  .hero h1 {
    font-size: 38px
  }

  .hero {
    height: 60vh
  }

  .menu-toggle {
    display: block;
    margin-left: 0;
    font-size: 28px;
    padding: 8px 12px;
    position: absolute;
    right: 18px;
    top: 18px;
    z-index: 6;
    background: transparent;
    border-radius: 6px
  }

  .menu-toggle.open {
    background: rgba(0, 0, 0, 0.06)
  }

  .primary-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--muted);
    flex-direction: column;
    padding: 12px 12px;
    border-radius: 0;
    box-shadow: 0 8px 30px rgba(0, 0, 0, .08);
    display: flex;
    align-items: center;
    transform: translateY(-8px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: transform .28s ease, opacity .28s ease, visibility .28s
  }

  .primary-menu li {
    width: 100%;
    text-align: center
  }

  .primary-menu li a {
    display: block;
    padding: 14px 8px;
    font-size: 18px
  }

  .primary-menu.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto
  }

  .home .primary-menu {
    background: rgba(0, 0, 0, 0.85)
  }

  .home .primary-menu li a {
    color: white;
    text-shadow: none
  }

  body.menu-open {
    overflow: hidden;
    height: 100vh
  }
}

@media (max-width:600px) {
  .container {
    padding: 0 12px
  }

  .hero h1 {
    font-size: 28px
  }
}

.page-section {
  padding: 100px 0
}

.page-section h2 {
  font-size: 28px;
  margin-bottom: 18px
}

.page-section .lead {
  max-width: 760px;
  color: #555;
  font-size: 20px;
  margin-bottom: 40px;
  line-height: 1.7;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  font-weight: 300;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 24px;
}

.gallery-item {
  background: linear-gradient(135deg, #eee, #f7f5f3);
  height: 250px;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #888;
  font-weight: 600;
  position: relative;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
  z-index: 2;
}

.gallery-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.gallery-item:hover .gallery-thumb {
  transform: scale(1.08);
}

.lb-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .28s ease, visibility .28s ease
}

.lb-overlay.open {
  opacity: 1;
  visibility: visible
}

.lb-inner {
  position: relative;
  max-width: 1200px;
  width: 100%;
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden
}

.lb-image {
  max-width: 100%;
  max-height: calc(90vh - 40px);
  display: block;
  border-radius: 6px;
  opacity: 0;
  transform: scale(.98);
  transition: opacity .28s ease, transform .28s ease;
  object-fit: contain;
  margin: 0 auto
}

.lb-overlay.open .lb-image {
  opacity: 1;
  transform: none
}

.lb-close {
  position: absolute;
  top: 12px;
  right: 12px;
  background: #fff;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
  z-index: 20;
  transition: transform .18s ease, box-shadow .18s ease
}

.lb-close:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.28)
}

.lb-close:focus {
  outline: 2px solid rgba(212, 175, 55, 0.25);
  outline-offset: 3px
}

.lb-loading {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  background: rgba(0, 0, 0, 0.35);
  padding: 8px 12px;
  border-radius: 6px
}

.lb-nav {
  position: absolute;
  left: 12px;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between
}

.lb-nav button {
  background: rgba(255, 255, 255, 0.06);
  border: 0;
  color: white;
  padding: 10px 12px;
  border-radius: 6px;
  cursor: pointer
}

.page-section.alt {
  background: #faf8f6
}

.fade-in {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .6s ease, transform .6s cubic-bezier(.2, .8, .2, 1)
}

.fade-in.in-view {
  opacity: 1;
  transform: none
}

@media (max-width:1100px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media (max-width:700px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media (max-width:900px) {
  .page-section {
    padding: 60px 0
  }
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
  text-align: left;
}

.footer-col h3 {
  color: #d4af37;
  font-size: 20px;
  margin-bottom: 20px;
  font-family: 'Playfair Display', serif;
}

.footer-col p,
.footer-col a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  line-height: 1.8;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-col a:hover {
  color: white;
  text-decoration: underline;
}

.footer-links-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links-list li {
  margin-bottom: 10px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
}

.price-table-wrap {
  margin-top: 40px;
  background: white;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
  text-align: left;
}

.price-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 12px;
}

.price-table th,
.price-table td {
  border-bottom: none;
  padding: 8px 0;
  vertical-align: bottom;
  position: relative;
  background: white;
  z-index: 1;
}

.price-table tr {
  position: relative;
}

.price-table tr::after {
  content: '';
  position: absolute;
  bottom: 12px;
  left: 0;
  width: 100%;
  border-bottom: 2px dotted #e5e5e5;
  z-index: 0;
}

.price-table th {
  font-weight: 500;
  font-size: 19px;
  text-align: left;
  padding-right: 10px;
  display: inline-block;
}

.price-table td.price-col {
  text-align: right;
  font-weight: 700;
  font-size: 19px;
  padding-left: 10px;
  float: right;
  color: var(--accent);
}

.price-table thead {
  display: none;
}

.wave-divider {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  transform: rotate(180deg);
}

.wave-divider svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 60px;
}

.wave-divider .shape-fill {
  fill: #ffffff;
}

.wave-to-white .shape-fill {
  fill: #ffffff;
}

.wave-to-alt .shape-fill {
  fill: #faf8f6;
}

.wave-to-dark .shape-fill {
  fill: #111111;
}

@media (max-width: 768px) {
  .wave-divider svg {
    height: 40px;
  }
}

.hero,
.page-section {
  position: relative;
}

.page-content {
  padding: 80px 0;
  min-height: 50vh;
}

.small-container {
  max-width: 800px;
}

.page-title {
  font-size: 36px;
  margin-bottom: 30px;
  color: #111;
  position: relative;
  display: inline-block;
}

.page-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: #d4af37;
  margin-top: 10px;
}

.back-link {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  border-bottom: 2px solid transparent;
  transition: .3s;
}

.back-link:hover {
  color: #d4af37;
  border-color: #d4af37;
}

.entry-content {
  font-size: 18px;
  line-height: 1.8;
  color: #444;
}

.entry-content h2,
.entry-content h3 {
  margin-top: 40px;
  margin-bottom: 20px;
}

.entry-content a {
  color: #d4af37;
  text-decoration: underline;
}

.team-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
}

.team-member {
  flex: 1;
  min-width: 280px;
  max-width: 350px;
  text-align: center;
  background: white;
  padding: 40px 20px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.team-member:hover {
  transform: translateY(-5px);
}

.team-photo-wrap {
  width: 150px;
  height: 150px;
  margin: 0 auto 20px auto;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #d4af37;
  padding: 3px;
}

.team-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}

.team-name {
  font-size: 22px;
  margin-bottom: 5px;
  color: #111;
}

.team-role {
  display: block;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #d4af37;
  margin-bottom: 15px;
  font-weight: 700;
}

.team-desc {
  font-size: 16px;
  color: #666;
  line-height: 1.6;
}

.contact-box {
  background: #faf8f6;
  padding: 40px;
  border-radius: 12px;
  display: inline-block;
  border: 1px solid #eee;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
  transition: transform 0.3s;
}

.contact-box:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.contact-phone {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  color: #111;
  text-decoration: none;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.contact-phone .icon {
  font-size: 28px;
}

.contact-phone:hover {
  color: #d4af37;
}

@media (max-width: 600px) {
  .contact-phone {
    font-size: 24px;
    flex-direction: column;
    gap: 5px;
  }
}

.sticky-mobile-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: white;
  display: flex;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  display: none;
}

.sticky-btn {
  flex: 1;
  text-align: center;
  padding: 15px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background 0.2s;
}

.sticky-btn.call-btn {
  background: #f7f5f3;
  color: #333;
}

.sticky-btn.book-btn {
  background: #d4af37;
  color: white;
}

.sticky-btn:active {
  opacity: 0.9;
}

@media (max-width: 768px) {
  .sticky-mobile-bar {
    display: flex;
    padding-bottom: env(safe-area-inset-bottom);
  }

  .site-footer {
    padding-bottom: 80px;
  }

  #scrollToTopBtn {
    bottom: 80px !important;
  }
}

#scrollToTopBtn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: #7eb8d4;
  color: white;
  border: none;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  line-height: 1;
}

#scrollToTopBtn:hover {
  background: #c5a028;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

#scrollToTopBtn.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

#scrollToTopBtn:hover.show {
  transform: translateY(-3px);
}

.price-accordion-item {
  margin-bottom: 20px;
  text-align: left;
}

.price-category-title {
  text-align: left;
  cursor: pointer;
  position: relative;
  display: block;
  padding: 15px 20px;
  background: white;
  margin-bottom: 0 !important;
  margin-top: 0 !important;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
  transition: all 0.3s ease;
}

.price-category-title::after {
  content: '+';
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
  color: #7eb8d4;
  font-weight: 300;
  transition: transform 0.3s ease;
}

.price-accordion-item.open .price-category-title {
  background: #7eb8d4;
  color: white;
  border-radius: 8px 8px 0 0;
}

.price-accordion-item.open .price-category-title::after {
  content: '\2212';
  color: white;
}

.price-category-content {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: all 0.4s ease-in-out;
  background: white;
  border-radius: 0 0 8px 8px;
}

.price-accordion-item.open .price-category-content {
  max-height: 3000px;
  opacity: 1;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.price-accordion-item .price-table-wrap {
  margin-top: 0;
  box-shadow: none;
  padding-top: 10px;
}

.fade-in {
  opacity: 0;
  transition: opacity 0.8s ease-out;
  will-change: opacity;
}

.fade-in.in-view {
  opacity: 1;
}

.slide-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: opacity, transform;
}

.slide-up.in-view {
  opacity: 1;
  transform: translateY(0);
}

.scale-in {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.6s ease-out, transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: opacity, transform;
}

.scale-in.in-view {
  opacity: 1;
  transform: scale(1);
}

.btn-premium:hover {
  animation: pulse-gold 2s infinite;
}

@keyframes pulse-gold {
  0% {
    box-shadow: 0 0 0 0 rgba(168, 216, 240, 0.4);
  }

  70% {
    box-shadow: 0 0 0 10px rgba(168, 216, 240, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(168, 216, 240, 0);
  }
}

.primary-menu li a::after {
  height: 3px;
  border-radius: 3px;
}

.service-highlights li {
  transition: transform 0.3s ease;
  padding: 8px 12px;
  border-radius: 8px;
}

.service-highlights li:hover {
  transform: translateX(10px);
  background-color: rgba(212, 175, 55, 0.05);
}

.team-member {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-member:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.price-category-title:hover {
  background-color: #faf8f6;
}

.opening-hours-list {
  list-style: none;
  padding: 0;
  margin: 15px 0 0 0;
  font-size: 15px;
}

.opening-hours-list li {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 4px;
}

.opening-hours-list li:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.opening-hours-list .day {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}

.opening-hours-list .time {
  color: rgba(255, 255, 255, 0.7);
  text-align: right;
}