/* 
  BODY FINE - Design System
  Maintained via separate CSS file
*/

:root {
  --primary-color: #1a1a1a;
  --secondary-color: #8B7355;
  --bg-color: transparent;
  --bg-alt: transparent;
  --bg-white: transparent;
  --text-primary: #222222;
  --text-secondary: #666666;
  --white: #ffffff;
  --border-radius: 12px;
  --transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Noto Sans JP', sans-serif;
  background-image: linear-gradient(rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.85)), url('../img/servicebg.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: var(--text-primary);
  line-height: 1.8;
  overflow-x: hidden;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Scrollbar Style */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: var(--secondary-color);
  border-radius: 4px;
}

/* Typography */
h1,
h2,
h3,
h4 {
  font-weight: 600;
  letter-spacing: 0.05em;
}

.sp-br {
  display: none;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

/* Header */
header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 9999;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  padding: 15px 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: none;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.logo {
  display: flex;
  align-items: center;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--primary-color);
}

.logo img {
  height: 55px;
  width: auto;
  margin-right: 12px;
  object-fit: contain;
}

/* ───── Resolution Specific Optimizations ───── */

/* Tablet & Laptop (around 1366px) */
@media screen and (min-width: 1025px) and (max-width: 1400px) {
  .hero-main-title {
    font-family: 'Roboto', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
  }
}

/* Smartphone Focus (around 375px) */
@media screen and (max-width: 480px) {
  .container {
    padding: 0 10px;
  }

  section {
    padding: 30px 0;
  }

  .section-title-heading {
    font-size: 1.5rem;
  }

  .hero-main-title {
    font-family: 'Roboto', sans-serif;
    font-size: 1.5rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.15em !important;
    padding: 0 10px;
  }

  .btn {
    width: 100%;
    padding: 12px 15px;
    font-size: 1rem;
  }

  .voice-card {
    min-width: 290px;
    padding: 20px;
  }

  .staff-box {
    padding: 25px;
  }

  .access-info {
    padding: 25px 15px;
  }

  .phone-link {
    font-size: 1.2rem;
  }
}

.nav-links {
  display: flex;
  gap: 30px;
  align-items: center;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-primary);
}

.nav-links a:hover {
  color: var(--secondary-color);
}

.nav-cta {
  background: var(--secondary-color);
  color: var(--white) !important;
  padding: 10px 25px;
  border-radius: 30px;
  font-weight: bold;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--primary-color);
  cursor: pointer;
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  background: #000;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transform: scale(1);
  transition: opacity 2s ease-in-out, transform 6s linear;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1.05);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
  /* Lighter overlay for better image visibility */
  pointer-events: none;
}

.hero-content {
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: var(--white);
  width: 90%;
  max-width: 800px;
  z-index: 10;
}

@media (max-width: 768px) {
  header,
  header.scrolled {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    padding: 0 !important;
    height: 80px !important;
    background: #ffffff !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05) !important;
    display: flex !important;
    align-items: center !important;
    z-index: 9999 !important;
  }

  .header-container {
    width: 100% !important;
    height: 100% !important;
    display: flex !important;
    align-items: center !important;
    padding: 0 20px !important;
  }

  .logo img {
    height: 45px !important;
  }

  .logo {
    color: var(--primary-color) !important;
  }

  .menu-toggle {
    display: block !important;
    color: var(--primary-color) !important;
    margin-left: auto;
  }

  .hero {
    height: 80vh !important;
    position: relative !important;
    margin-top: 80px !important;
    background: #000 !important;
  }

  .hero-slider,
  .hero-slide {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    display: block !important;
    opacity: 0 !important;
    transform: none !important;
    transition: opacity 2s ease-in-out !important;
  }

  .hero-slide.active {
    opacity: 1 !important;
  }

  .hero-slide img {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
  }

  .hero-content {
    position: absolute !important;
    top: 18% !important;
    bottom: auto !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    width: 90% !important;
    padding: 0 !important;
    text-align: center !important;
    z-index: 20 !important;
    background: transparent !important;
  }

  .sp-br {
    display: block !important;
  }

  .hero-main-title {
    font-family: 'Roboto', sans-serif;
    color: #ffffff !important;
    font-size: 1.5rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.15em !important;
    line-height: 1.6 !important;
    margin-bottom: 25px !important;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.9) !important;
  }

  .btn-hero {
    padding: 12px 30px !important;
    font-size: 0.9rem !important;
  }
}

.hero-meta {
  display: block;
  font-family: 'Georgia', serif;
  /* Or any cursive/serif font */
  font-style: italic;
  font-size: 1.5rem;
  margin-bottom: 10px;
  opacity: 0.9;
}

.hero-main-title {
  font-family: 'Roboto', sans-serif;
  font-size: clamp(1.5rem, 5vw, 2.5rem);
  font-weight: 700;
  letter-spacing: 0.15em;
  line-height: 1.2;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.hero-main-title small {
  font-size: 0.5em;
  vertical-align: middle;
  display: inline-block;
  transform: translateY(-5%);
}

.hero-subtext {
  font-size: 1.1rem;
  margin-bottom: 40px;
  opacity: 0.8;
  letter-spacing: 0.1em;
}

.btn-hero {
  display: inline-block;
  padding: 15px 45px;
  background: #80cbc4;
  /* Teal color from reference */
  color: var(--white);
  text-decoration: none;
  font-weight: bold;
  font-size: 1rem;
  letter-spacing: 0.1em;
  transition: var(--transition);
  text-transform: uppercase;
}

.btn-hero:hover {
  background: #4db6ac;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}

.scroll-indicator span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  display: block;
}

.scroll-indicator span.active {
  background: var(--white);
}

/* CTA Strip */
.cta-strip {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(5px);
  padding: 80px 0;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
  text-align: center;
  position: relative;
  overflow: hidden;
  /* background: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)), url('../img/staffbg.jpg'); */
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.cta-strip.bg-light {
  background: rgba(139, 115, 85, 0.15);
  backdrop-filter: blur(5px);
}

.cta-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 40px;
  border-radius: 30px;
  font-weight: bold;
  font-size: 1.1rem;
  transition: var(--transition);
  min-width: 280px;
}

.btn-outline {
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
}

.btn-outline:hover {
  background: var(--primary-color);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.btn-filled {
  background: var(--primary-color);
  color: var(--white);
}

.btn-filled:hover {
  box-shadow: 0 10px 30px rgba(139, 115, 85, 0.4);
  transform: translateY(-3px);
  background: var(--secondary-color);
}

/* Specific CTA button animations */
.btn-cta-main i {
  animation: phoneRing 2s infinite;
}

@keyframes phoneRing {

  0%,
  100% {
    transform: rotate(0);
  }

  10%,
  30%,
  50% {
    transform: rotate(-20deg);
  }

  20%,
  40%,
  60% {
    transform: rotate(20deg);
  }

  70% {
    transform: rotate(0);
  }
}

.btn-cta-sub:hover i {
  transform: scale(1.2) rotate(10deg);
  transition: transform 0.3s ease;
}

/* Sections */
section {
  padding: 100px 0;
}

.bg-white {
  background-color: var(--bg-white);

}

#staff {
  background-color: var(--bg-white);
  background-image: url(../img/bgimg11.jpg);
  background-size: cover;
  background-position: center;
}

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

.bg-alt {
  background-color: var(--bg-alt);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-title-box {
  text-align: center;
  margin-bottom: 60px;
}

.section-title-heading {
  font-size: 2.2rem;
  color: var(--primary-color);
  position: relative;
  display: inline-block;
  padding-bottom: 15px;
  letter-spacing: 0.15em;
}

.section-title-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background: var(--secondary-color);
}

@media (max-width: 768px) {
  .section-title-heading {
    font-size: 1.8rem;
  }
}

/* Grid System */
.grid {
  display: grid;
  gap: 60px;
  align-items: center;
}

.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

@media (max-width: 768px) {
  .grid-2 {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* About Section */
#about {
  background: rgba(241, 240, 236, 0.9);
  backdrop-filter: blur(5px);
}

.about-text-box {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  padding: 40px;
  border-radius: var(--border-radius);
}

.about-img {
  width: 100%;
  border-radius: var(--border-radius);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Service Section */
.service-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 100px;
}

@media (max-width: 768px) {
  .service-item {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 60px;
  }
  .about-text-box {
    padding: 30px 20px;
  }
}

#menu-price {
  background: rgba(241, 240, 236, 0.9);
  backdrop-filter: blur(5px);
}

.service-item:nth-child(even) {
  direction: rtl;
}

.service-item:nth-child(even) .service-content {
  direction: ltr;
}

.service-content h3 {
  color: var(--secondary-color);
  margin-bottom: 20px;
  font-size: 1.75rem;
}

.service-img {
  width: 100%;
  border-radius: var(--border-radius);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Menu Section */
.menu-grid {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 40px;
}

.menu-sticky-img {
  position: sticky;
  top: 100px;
  border-radius: var(--border-radius);
  overflow: hidden;
}

.menu-category {
  margin-bottom: 50px;
}

.menu-category h4 {
  border-bottom: 2px solid var(--secondary-color);
  display: inline-block;
  padding-bottom: 5px;
  margin-bottom: 30px;
  font-size: 1.4rem;
}

.menu-list {
  list-style: none;
}

.menu-item {
  display: flex;
  flex-direction: column;
  margin-bottom: 25px;
}

.menu-item-header {
  display: flex;
  justify-content: space-between;
  font-weight: 600;
}

.menu-price {
  color: var(--secondary-color);
}

.menu-note {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.btn-menu-link {
  display: inline-block;
  margin-top: 30px;
  padding: 14px 40px;
  background: transparent;
  color: var(--secondary-color);
  border: 2px solid var(--secondary-color);
  border-radius: 50px;
  font-weight: bold;
  font-size: 1rem;
  transition: all 0.3s ease;
  text-decoration: none;
  letter-spacing: 0.05em;
}

.btn-menu-link:hover {
  background: var(--secondary-color);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(139, 115, 85, 0.3);
}

/* Voice Carousel */
.voice-carousel {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 24px;
  padding-bottom: 10px;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.voice-carousel::-webkit-scrollbar {
  display: none;
}

.voice-card {
  min-width: 350px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  padding: 30px;
  border-radius: var(--border-radius);
  border: 1px solid rgba(255, 255, 255, 0.3);
  scroll-snap-align: start;
  transition: var(--transition);
}

.voice-card:hover {
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
  transform: translateY(-4px);
}

.voice-header {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.voice-avatar {
  width: 48px;
  height: 48px;
  background: var(--bg-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  color: var(--text-secondary);
}

.stars {
  color: #faaf00;
  font-size: 0.8rem;
}

/* Premium Overlapping Staff Section */
.staff-overlap-container {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  max-width: 1000px;
  margin: 60px auto;
  padding: 40px 0;
}

.staff-center-img-wrap {
  width: 50%;
  position: relative;
  z-index: 2;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  border-radius: 4px;
  overflow: hidden;
}

.staff-center-img-wrap img {
  width: 100%;
  display: block;
}

.staff-box {
  position: absolute;
  padding: 40px;
  width: 350px;
  z-index: 3;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
}

.staff-box-left {
  left: 0;
  bottom: -20px;
  background: var(--white);
  transform: translateX(-20%);
}

.staff-box-right {
  right: 0;
  top: 20px;
  background: #80cbc4;
  /* Teal color inspired by reference image */
  color: var(--white);
  transform: translateX(20%);
}

.staff-box h3 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  letter-spacing: 0.1em;
}

.staff-box-left p {
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.staff-box-right p {
  font-size: 1.1rem;
  margin-bottom: 30px;
}

.staff-box-right .btn-mini {
  display: inline-block;
  padding: 10px 20px;
  border: 1px solid var(--white);
  color: var(--white);
  text-decoration: none;
  font-weight: bold;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.staff-box-right .btn-mini:hover {
  background: var(--white);
  color: #80cbc4;
}

/* Staff Card */
.staff-card {
  max-width: 800px;
  margin: 0 auto;
  background: var(--white);
  padding: 40px;
  border-radius: 20px;
  border: 1px solid #eaeaea;
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

.staff-img {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.staff-info h4 {
  font-size: 1.5rem;
  margin-bottom: 5px;
}

.staff-kana {
  font-size: 0.9rem;
  color: var(--text-secondary);
  font-weight: normal;
}

.staff-role {
  color: var(--secondary-color);
  font-weight: 600;
  margin-bottom: 20px;
}

/* Access Table */
.access-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.access-info {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  padding: 40px;
  border-radius: var(--border-radius);
  border: 1px solid rgba(255, 255, 255, 0.3);
  display: flex;
  flex-direction: column;
  gap: 30px;
  height: 100%;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
  transition: var(--transition);
}

.access-info:hover {
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.06);
  transform: translateY(-5px);
}

.info-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.info-icon {
  width: 50px;
  height: 50px;
  background: var(--bg-color);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary-color);
  font-size: 1.25rem;
  flex-shrink: 0;
  transition: var(--transition);
}

.info-item:hover .info-icon {
  background: var(--secondary-color);
  color: var(--white);
  transform: scale(1.1);
}

.info-body h4 {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 5px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.info-body p {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text-primary);
}

.access-cta {
  margin-top: auto;
  padding-top: 15px;
  display: flex;
  justify-content: center;
}

.access-cta .btn {
  width: auto;
  padding: 12px 35px;
  font-size: 0.95rem;
  border-radius: 50px;
}

.phone-link {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary-color);
}

.phone-link:hover {
  color: var(--secondary-color);
}

.map-container {
  border-radius: var(--border-radius);
  overflow: hidden;
  height: 100%;
  min-height: 450px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
}

.map-container:hover {
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
}

/* Footer */
footer {
  background: #1a1a1a;
  color: var(--white);
  padding: 80px 0 40px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 60px;
  gap: 40px;
}

.footer-logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
}

.footer-desc {
  opacity: 0.8;
  line-height: 1.8;
  font-size: 0.95rem;
}

.footer-info {
  margin-top: 10px;
}

.footer-info-item {
  opacity: 0.9;
  margin-bottom: 8px;
  font-size: 0.9rem;
}

.footer-nav {
  display: flex;
  gap: 60px;
}

.footer-nav-col {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.footer-nav a {
  color: var(--white);
  opacity: 0.7;
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer-nav a:hover {
  opacity: 1;
  color: var(--secondary-color);
  padding-left: 5px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
  text-align: center;
}

.copyright {
  font-size: 0.85rem;
  opacity: 0.6;
}

@media (max-width: 768px) {
  footer {
    padding: 60px 0 30px !important;
  }

  .footer-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 40px;
  }

  .footer-nav {
    gap: 40px;
  }

  .footer-nav-col {
    align-items: center;
  }

  .footer-desc,
  .footer-info {
    display: none !important;
  }
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: #1a1a1a;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  z-index: 999;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.1);
}

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

.back-to-top:hover {
  background: var(--secondary-color);
  color: #ffffff;
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
  .back-to-top {
    bottom: 85px;
    right: 20px;
    width: 45px;
    height: 45px;
  }
}

/* Mobile Fixed Action Bar */
.mobile-action-bar {
  display: none;
}

@media (max-width: 768px) {
  .mobile-action-bar {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 70px;
    background: #ffffff;
    z-index: 10001;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  }

  .action-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    transition: 0.3s;
  }

  .action-phone {
    background: #ffffff;
    color: var(--primary-color);
    border-right: 1px solid #eeeeee;
  }

  .action-reserve {
    background: var(--secondary-color);
    color: #ffffff;
  }

  body {
    padding-bottom: 70px;
  }
}
.drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 320px;
  height: 100vh;
  background-image: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)), url('../img/spfv01.jpg');
  background-size: cover;
  background-position: center;
  backdrop-filter: blur(8px);
  z-index: 10000;
  transition: right 0.4s ease;
  padding: 60px 30px;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  box-shadow: -5px 0 25px rgba(0, 0, 0, 0.1);
}

.drawer-banner {
  display: none;
}

.drawer-close {
  position: absolute;
  top: 25px;
  right: 25px;
  z-index: 10;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.drawer-links {
  display: flex;
  flex-direction: column;
}

.drawer.open {
  right: 0;
}

.drawer-close {
  align-self: flex-end;
  background: none;
  border: none;
  cursor: pointer;
  margin-bottom: 40px;
}

.drawer-links {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.drawer-links a {
  padding: 20px 0;
  border-bottom: 1px solid #eee;
  font-size: 1.2rem;
  text-align: center;
}

.drawer-footer {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.overlay-bg {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1050;
  display: none;
}

.overlay-bg.active {
  display: block;
}

/* Animations */
.fade-in {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 1024px) {
  .nav-links {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .section-title-img {
    max-width: 85%;
  }
}

@media (max-width: 768px) {
  .staff-overlap-container {
    flex-direction: column;
    margin: 40px auto;
  }

  .staff-center-img-wrap {
    width: 90%;
    margin-bottom: 40px;
  }

  .staff-box {
    position: static;
    width: 90%;
    transform: none;
    margin-bottom: 20px;
  }

  .access-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .access-info {
    max-width: 100%;
    margin: 0 auto;
    padding: 20px !important;
  }

  .service-item {
    direction: ltr !important;
  }

  .staff-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .section-title-overlay {
    font-size: 1.5rem;
  }

  /* Grid Stack Fixes */
  .grid-2,
  .service-item,
  .menu-grid {
    grid-template-columns: 1fr !important;
    gap: 30px !important;
  }

  .menu-category {
    padding: 25px 15px !important;
  }

  .service-item {
    margin-bottom: 60px !important;
    direction: ltr !important;
  }

  .about-text-box {
    padding: 30px 20px !important;
    margin-top: 20px;
  }

  .menu-sticky-img {
    position: static !important;
    margin-bottom: 30px;
  }

  .cta-container {
    flex-direction: row !important;
    justify-content: center !important;
    gap: 15px !important;
  }

  .btn {
    flex: 1 !important;
    min-width: 280px !important;
    max-width: 400px !important;
    margin: 0 !important;
    padding: 12px 10px !important;
    font-size: 0.95rem !important;
  }
}

/* ── More Reviews Button ── */
.btn-more-reviews {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 36px;
  background: #ffffff;
  color: #1a73e8;
  border: 2px solid #1a73e8;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(26, 115, 232, 0.15);
}

.btn-more-reviews:hover {
  background: #1a73e8;
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(26, 115, 232, 0.35);
}