@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;700&family=Noto+Serif+JP:wght@400;700&family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Outfit:wght@100..900&display=swap');

:root {
  --primary: #8b3d3d;
  /* Accent Deep Red-Brown */
  --secondary: #6b2d2d;
  /* Darker Red */
  --accent: #ff8c00;
  /* Orange Logo */
  --dark: #1a1a1a;
  /* Rich Black */
  --light: #f4f1ea;
  /* Cream Beige Background */
  --white: #ffffff;
  --glass: rgba(244, 241, 234, 0.9);
  --shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  --font-main: 'Noto Sans JP', sans-serif;
  --font-serif: 'Playfair Display', 'Noto Serif JP', serif;
  --font-logo: 'Playfair Display', serif;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-main);
  background-color: var(--light);
  color: var(--dark);
  line-height: 1.8;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Background */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--light);
  z-index: -2;
}

.moving-bg {
  display: none;
  /* Removed for cleaner ONZS look */
}

/* Header & Nav */
header {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 15px 5%;
  /* Slightly increased height from previous ultralim */
  z-index: 1000;
  transition: all 0.4s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header.scrolled {
  background: var(--glass);
  backdrop-filter: blur(10px);
  padding: 8px 5%;
  /* Slightly increased from previous ultra-slim */
  box-shadow: var(--shadow);
}

header.scrolled .nav-links a {
  color: #4a4a4a;
  /* Deep Ash on scroll */
}

.logo {
  font-family: var(--font-logo);
  font-size: 1.6rem;
  /* Slightly smaller for slimness */
  font-weight: 800;
  color: var(--accent);
  /* Light Brown Logo */
  text-decoration: none;
  letter-spacing: 2px;
  flex: 0 0 auto;
  /* Allow natural one-line width */
  white-space: nowrap;
  /* Single line requirement */
}

.nav-links {
  display: flex;
  gap: 30px;
  flex: 1;
  justify-content: center;
}

.nav-links a {
  text-decoration: none;
  color: var(--light);
  /* Off-White initially */
  font-weight: 800;
  font-size: 0.9rem;
  position: relative;
  letter-spacing: 1px;
}

.nav-actions {
  display: flex;
  gap: 15px;
  flex: 0 0 auto;
  align-items: center;
}

.nav-actions a {
  text-decoration: none;
  color: #fff;
  background: var(--primary);
  padding: 8px 15px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  transition: 0.3s;
}

.nav-actions a.insta-btn {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%) !important;
  color: white !important;
}

.insta-btn {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%) !important;
  color: white !important;
}

.uber-btn {
  background-color: #06C167 !important;
  color: white !important;
}

.tel-btn {
  background-color: #fcfcfc !important;
  color: var(--primary) !important;
  border: 1px solid var(--primary) !important;
}

.cta-btns {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.cta-btns .btn {
  padding: 15px 30px;
  font-size: 0.9rem;
  min-width: 200px;
  border-radius: 4px;
  font-family: var(--font-main) !important;
}

.cta-margin-top {
  margin-top: 80px;
}

@media (max-width: 600px) {
  .cta-btns {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
  .cta-btns .btn {
    width: 100%;
    max-width: 280px;
  }
}

.nav-actions a:hover {
  opacity: 0.8;
}

.btn-other-menu {
  display: inline-block;
  margin-top: 50px;
  padding: 15px 40px;
  background: #f4f1ea;
  color: var(--primary);
  border: 1px solid var(--primary);
  text-decoration: none;
  font-weight: 700;
  transition: 0.3s;
  letter-spacing: 1px;
}

.btn-other-menu:hover {
  background: var(--primary);
  color: #fff;
}

@media (max-width: 1100px) {
  .nav-links {
    display: none !important;
  }

  .nav-actions {
    display: none !important;
  }

  .hamburger {
    display: flex !important;
  }
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: 0.3s;
}

.nav-links a:hover::after {
  width: 100%;
}

/* Hamburger Menu (Mobile) */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 24px;
  gap: 6px;
  cursor: pointer;
  z-index: 1001;
  margin-left: auto;
}

.hamburger span {
  display: block;
  width: 28px;
  height: 3px;
  background: var(--accent);
  /* Use Orange for high visibility */
  border-radius: 2px;
  transition: 0.3s;
}

header.scrolled .hamburger span {
  background: var(--accent);
  /* Keep Orange for brand consistency */
}

/* Hero Section */
.hero {
  height: 100vh;
  /* Restored to full height */
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.hero-content {
  z-index: 2;
  color: #fff;
  max-width: 800px;
  padding: 20px;
}

.hero-content h1 {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
  text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.5);
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 40px;
  text-shadow: 1px 1px 10px rgba(0, 0, 0, 0.5);
}

.hero-catchphrase {
  font-family: 'Noto Serif JP', serif;
  letter-spacing: 3px;
  opacity: 1;
  animation-duration: 2s;
  line-height: 1.8;
  font-size: 1.6rem;
  color: #fff;
  font-weight: 700;
  text-align: center;
}


.hero-catchphrase .line2 {
  display: inline-block;
  margin-left: 50px;
}


.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

.hero-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 120%;
  /* For Parallax offset */
  z-index: 0;
  transform: translateY(0);
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 2s ease-in-out;
}

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

/* Split Sections (40:60 Ratio) */
.split-section {
  padding: 100px 0;
  overflow: hidden;
}

.split-container {
  display: flex;
  align-items: center;
  justify-content: center;
  /* Center horizontally */
  width: 100%;
  max-width: 1200px;
  /* Constrain width for centering */
  margin: 0 auto;
  column-gap: 60px;
  /* Balanced gap */
}

.split-container.reverse {
  flex-direction: row;
  /* Overriding to keep image left / text right as requested */
}

.split-section.reverse {
  flex-direction: row-reverse;
}

.text-col {
  flex: 0 0 50%;
  padding: 0;
  /* Removing padding to close gap */
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 2;
}

.img-col {
  flex: 0 0 50%;
  position: relative;
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.img-col img {
  width: 470px;
  height: 340px;
  max-width: 100%;
  object-fit: cover;
  border-radius: 0;
  /* Sharp corners */
  box-shadow: var(--shadow);
}

.section-header {
  text-align: center;
  width: 100%;
  margin-bottom: 80px;
  padding: 0 5%;
  position: relative;
}

.section-tag {
  display: block;
  color: var(--primary);
  font-weight: 800;
  font-family: var(--font-serif);
  font-size: 3.5rem;
  margin-bottom: 10px;
  letter-spacing: 5px;
  line-height: 1.2;
}

.section-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--dark);
  font-family: var(--font-serif);
  opacity: 0.9;
  letter-spacing: 2px;
}

.section-id {
  display: none;
}

.about-title {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  /* Reduced to fit one line */
  font-weight: 800;
  margin-bottom: 25px;
  line-height: 1.2;
  color: var(--dark);
  white-space: nowrap;
  /* Force one line */
}

@media (max-width: 768px) {
  .section-tag {
    font-size: 2.2rem;
  }

  .about-title {
    font-size: 1.3rem;
    white-space: normal;
    /* Allow wrap on mobile */
  }
}

.section-text {
  font-size: 1.05rem;
  color: #555;
  margin-bottom: 30px;
}

/* Menu Grid (6 Cards, 3 per row) */
.menu-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 60px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.menu-card {
  background: var(--white);
  border-bottom: 3px solid transparent;
  transition: all 0.3s ease;
  flex: 0 1 calc(33.333% - 20px);
  display: flex;
  flex-direction: column;
}

.menu-card-img {
  width: 100%;
  height: 260px;
  overflow: hidden;
}

.menu-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.menu-card:hover .menu-card-img img {
  transform: scale(1.1);
}

.menu-card-content {
  padding: 25px;
  flex-grow: 1;
}

.menu-card:hover {
  border-bottom-color: var(--primary);
  box-shadow: var(--shadow);
}

.menu-item-title {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  margin-bottom: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.menu-item-price {
  color: var(--primary);
  font-weight: 700;
  font-size: 1.1rem;
}

.menu-item-desc {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.6;
}

@media (max-width: 991px) {
  .menu-card {
    flex: 0 1 calc(50% - 15px);
  }
}

@media (max-width: 600px) {
  .menu-card {
    flex: 0 1 100%;
    max-width: 400px;
  }
}

/* Buttons (CTA) */
.btn {
  display: inline-block;
  padding: 18px 45px;
  border-radius: 0;
  /* Sharp edges as per ONZS */
  text-decoration: none;
  font-weight: 700;
  transition: all 0.4s ease;
  cursor: pointer;
  border: none;
  font-family: var(--font-serif);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  border: 1px solid var(--primary);
}

.btn-primary:hover {
  background: transparent;
  color: var(--primary);
  transform: translateY(-5px);
}

/* CTA Reservation Section */
.cta-reserve {
  padding: 120px 5%;
  background: var(--primary);
  color: #fff;
  text-align: center;
}

.cta-reserve h2 {
  font-family: var(--font-serif);
  font-size: 3rem;
  margin-bottom: 30px;
}

.cta-reserve .btn-white {
  background: #fff;
  color: var(--primary);
}

.cta-reserve .btn-white:hover {
  background: transparent;
  color: #fff;
  border: 1px solid #fff;
}

/* Recommended Menu (Atmospheric Background) */
.rec-menu-section {
  padding: 150px 5%;
  background: url('../img/hero.png') center/cover no-repeat fixed;
  position: relative;
  overflow: hidden;
}

.rec-menu-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

.rec-menu-container {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
}

.rec-menu-card {
  background: #fff;
  padding: 40px;
  display: flex;
  align-items: center;
  gap: 40px;
}

.rec-menu-img-wrapper {
  position: relative;
  width: 450px;
  height: 450px;
  flex-shrink: 0;
}

.rec-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}

.rec-img.active {
  opacity: 1;
}

.rec-menu-card-info-wrapper {
  flex: 1;
  display: grid;
}

.rec-menu-card-info {
  grid-area: 1 / 1;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
  pointer-events: none;
}

.rec-menu-card-info.active {
  opacity: 1;
  pointer-events: auto;
}

/* Voice Section (Image Pattern & Slider) */
.voice-section {
  padding: 120px 0;
  background-color: #fcfcfc;
  overflow: hidden;
}

.voice-swiper {
  width: 100%;
  max-width: 1200px;
  /* Constrain to 3 cards width */
  margin: 0 auto;
  padding: 40px 0;
}

.voice-swiper .swiper-wrapper {
  transition-timing-function: ease-in-out !important;
  /* Step-by-step feel */
}

.voice-card {
  width: calc(33.333% - 20px);
  /* Strict 3-card view */
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin: 10px;
}

.voice-user {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 5px;
}

.voice-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
}

.voice-user-info span {
  display: block;
}

.voice-name {
  font-weight: 700;
  color: #333;
}

.voice-tag {
  font-size: 0.75rem;
  color: #999;
}

.voice-stars {
  color: #ff9800;
  /* Star Color */
  font-size: 1rem;
  display: flex;
  gap: 2px;
}

.voice-card p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: #555;
  margin: 0;
}

.google-review-btn {
  display: inline-block;
  background: #fff;
  color: #c3423f;
  padding: 15px 50px;
  border: 2px solid #c3423f;
  text-decoration: none;
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 2px;
  transition: 0.3s;
  margin-top: 50px;
}

.google-review-btn:hover {
  background: #c3423f;
  color: #fff;
}

/* Service Title Refinement */
.service-content .about-title {
  font-size: 1.6rem;
  /* Smaller for service section */
  white-space: nowrap;
  /* Single line */
  margin-bottom: 20px;
}

@media (max-width: 1100px) {
  .service-content .about-title {
    white-space: normal;
  }
}

/* Footer Overhaul */
.footer {
  padding: 100px 5% 40px;
  background: #333;
  color: #fff;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
}

.footer-inline-nav {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-inline-nav a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 1px;
  transition: 0.3s;
}

.footer-inline-nav a:hover {
  color: var(--accent);
}

.footer-brand h2 {
  font-family: var(--font-logo);
  font-size: 2rem;
  margin-bottom: 20px;
  color: #ff8c00;
}

.footer-brand p {
  opacity: 0.7;
  font-size: 0.9rem;
  max-width: 300px;
  line-height: 2;
}

.footer-heading {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 25px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  display: inline-block;
  padding-bottom: 5px;
}

.footer-nav ul {
  list-style: none;
}

.footer-nav li {
  margin-bottom: 12px;
}

.footer-nav a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 0.85rem;
  transition: 0.3s;
}

.footer-nav a:hover {
  color: #ff8c00;
}

.footer-bottom {
  margin-top: 80px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  text-align: center;
  font-size: 0.8rem;
  opacity: 0.5;
}

@media (max-width: 991px) {
  .footer-container {
    flex-direction: column;
    justify-content: center;
    gap: 20px;
  }

  .footer-brand {
    text-align: center;
  }

  .split-container {
    flex-direction: column !important;
  }

  .text-col,
  .img-col {
    width: 100%;
    padding: 20px 5%;
  }

  .img-col img {
    width: 100%;
    height: auto;
  }

  .section-id {
    font-size: 5rem;
    top: -20px;
  }

  .section-tag {
    font-size: 2.5rem;
  }
}

/* Recommend List refinement */
.recommend-list {
  padding: 0;
  border-left: 2px solid var(--primary);
  padding-left: 30px;
  list-style: none;
  /* Ensuring no bullets */
}

.recommend-list li {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.recommend-list li .material-icons {
  color: var(--primary);
}

/* Service Blocks (01, 02, 03) */
.service-section {
  padding: 100px 0;
}

.service-block {
  display: flex;
  align-items: center;
  margin: 0 auto 120px;
  max-width: 1100px;
  /* Centering and balancing */
  width: 100%;
}

.service-block.reverse {
  flex-direction: row-reverse;
  justify-content: center;
  /* Center aligning reversed block */
}

.service-id {
  font-family: var(--font-serif);
  font-size: 6rem;
  color: var(--primary);
  margin-bottom: -20px;
  display: block;
  opacity: 0.8;
}

.service-img {
  flex: 0 0 45%;
  padding: 0;
}

.service-img img {
  width: 100%;
  height: auto;
  box-shadow: 20px 20px 0 rgba(139, 61, 61, 0.05);
}

.service-content {
  flex: 0 0 55%;
  padding: 0 8%;
}

/* New About Section (Image 2 style) */
.about-visual-section {
  padding: 150px 5%;
  background: url('../img/interior.png') center/cover no-repeat fixed;
  position: relative;
  color: #fff;
  overflow: hidden;
}

.about-visual-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(44, 18, 18, 0.85);
  /* Deep reddish dark overlay */
  z-index: 1;
}

.about-visual-container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
}

.about-header-centered {
  text-align: center;
  margin-bottom: 100px;
}

.about-header-centered h2 {
  font-family: var(--font-serif);
  font-size: 3rem;
  letter-spacing: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  display: inline-block;
  padding-bottom: 10px;
}

.about-visual-grid {
  display: flex;
  align-items: center;
  gap: 80px;
}

.about-visual-text {
  flex: 1;
  font-size: 1rem;
  line-height: 2.2;
  margin-top: 50px;
}

.about-visual-text .about-title {
  color: #fdf5e6;
}

.about-visual-quote {
  font-family: var(--font-serif);
  font-size: 3rem;
  margin-top: 80px;
  text-align: right;
  line-height: 1.2;
  opacity: 0.9;
}

.about-images-staggered {
  flex: 1;
  display: flex;
  gap: 15px;
  align-items: center;
}

.stagger-img {
  flex: 1;
  height: 450px;
  overflow: hidden;
}

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

/* Service and Recommend Image Dimensions */
.recommend-section .img-col img,
.service-section .service-img img {
  width: 470px !important;
  height: 340px !important;
  max-width: 100%;
  object-fit: cover;
}

.stagger-img.offset-up {
  transform: translateY(-40px);
}

.stagger-img.offset-down {
  transform: translateY(40px);
}

/* Recommended Menu (Atmospheric Background) */
.rec-menu-section {
  padding: 150px 5%;
  background: url('../img/recbg.jpg') center/cover no-repeat fixed;
  position: relative;
  overflow: hidden;
}

.rec-menu-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

.rec-menu-container {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
}

.rec-menu-card {
  background: #fff;
  padding: 30px;
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  gap: 30px;
}

.rec-menu-img-wrapper {
  position: relative;
  width: 450px;
  height: 450px;
  flex-shrink: 0;
}

.rec-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}

.rec-img.active {
  opacity: 1;
}

.rec-menu-card-info-wrapper {
  flex: 1;
  display: grid;
}

.rec-menu-card-info {
  grid-area: 1 / 1;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
  pointer-events: none;
}

.rec-menu-card-info.active {
  opacity: 1;
  pointer-events: auto;
}




/* Gallery Section */
.gallery-section {
  padding: 100px 0;
  background-color: var(--light);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5%;
}

.gallery-item {
  aspect-ratio: 1;
  overflow: hidden;
}

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

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

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

@media (max-width: 768px) {

  .service-block,
  .service-block.reverse {
    flex-direction: column !important;
  }

  .service-img,
  .service-content {
    flex: 0 0 100%;
    padding: 20px 5%;
  }

  .rec-menu-card {
    flex-direction: column;
    text-align: center;
  }

  .about-visual-grid {
    flex-direction: column-reverse !important;
    gap: 30px;
  }

  .about-images-staggered {
    width: 100%;
    justify-content: center;
    margin-bottom: 50px;
    padding: 0 10%;
  }

  .access-content {
    display: flex !important;
    flex-direction: column !important;
    gap: 30px !important;
  }

  .hero-content h1 {
    font-size: 2.2rem;
  }

  .hero-content p {
    font-size: 1rem;
    letter-spacing: 2px;
  }

  .hero-catchphrase {
    font-size: 18px;
    line-height: 1.6;
  }

  .hero-catchphrase .line2 {
    margin-left: 30px;
  }


  .about-header-centered h2 {
    font-size: 2rem;
    letter-spacing: 5px;
  }

  .service-id {
    font-size: 4rem;
    margin-bottom: 0;
  }

  .rec-menu-card {
    padding: 20px;
    flex-direction: column;
    text-align: left !important;
  }

  .rec-menu-img-wrapper {
    width: 100%;
    max-width: 280px;
    height: auto;
    aspect-ratio: 1;
    margin: 0 auto 20px;
  }

  .rec-menu-card h3 {
    font-size: 1.1rem !important;
    white-space: nowrap;
  }

  .rec-menu-card-info p {
    text-align: left !important;
  }

  .stagger-img {
    height: 180px;
  }

  /* Clear explicit CSS width on mobile so Swiper controls it */
  .voice-card {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }

  #recommended-menu .section-tag {
    font-size: 2.2rem;
    letter-spacing: 3px;
  }

  /* SP Left Align for Recommended Title */
  #recommended-menu .section-header {
    text-align: left !important;
    padding-left: 5% !important;
  }
  #recommended-menu .section-tag,
  #recommended-menu .section-title {
    text-align: left !important;
    margin-left: 0 !important;
  }
}

/* SP Break Utility */
.sp-br {
  display: none;
}

@media (max-width: 768px) {
  .sp-br {
    display: block;
  }
}

/* Gallery Modal */
.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  cursor: pointer;
  align-items: center;
  justify-content: center;
}

.modal-content {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
}

/* Mobile Sticky CTA */
.sp-sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 10px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(5px);
  z-index: 1500;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

.sp-sticky-cta .cta-btn {
  flex: 1;
  max-width: 180px;
  padding: 12px;
  font-size: 0.85rem;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  border-radius: 4px;
}

.sp-sticky-cta .uber-cta {
  background: #06C167;
  color: #fff;
}

.sp-sticky-cta .insta-cta {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: #fff;
}


@media (max-width: 768px) {
  .sp-sticky-cta {
    display: flex;
  }
  body {
    padding-bottom: 60px; /* Space for sticky footer */
  }
}

/* Scroll Top Button */
.scroll-top {
  position: fixed;
  bottom: 80px;
  right: 20px;
  width: 45px;
  height: 45px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
}

.scroll-top:hover {
  background: var(--accent);
  color: #fff;
}

@media (max-width: 768px) {
  .scroll-top {
    bottom: 90px; /* Above the sticky CTA */
    right: 15px;
  }
}

/* Utilities */
.sp-br {
  display: none;
}
@media (max-width: 768px) {
  .sp-br {
    display: block;
  }
}