:root{
  --bg:#0f0c08;
  --panel: rgba(255,255,255,0.04);
  --panel2: rgba(255,255,255,0.06);
  --text:#f2f2f2;
  --muted: rgba(255,255,255,0.72);
  --gold:#dcb361;
  --gold2:#b98a2f;
  --brown:#5a3e2b;
}

body{
  background: var(--bg);
  color: var(--text);
}

/* ===================== RESET ===================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", sans-serif;
}

body {
  background-color: #f4f8f6;
  color: #333;
}

/* ===================== NAVBAR (FINAL) ===================== */
.navbar {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 12px;
  padding: 15px 30px;
  background: #5a3e2b;
  color: #fff;
}

/* Top row: Logo left + Language right */
.nav-top {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Brand */
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #fff;
  font-weight: 700;
}

.brand-logo {
  height: 36px;
  width: auto;
  display: block;
}

.brand-text {
  font-size: 20px;
}

/* Desktop nav links */
.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  padding: 8px 10px;
  border-radius: 8px;
}

.nav-links a:hover {
  background: rgba(255, 255, 255, 0.12);
}

.nav-links a.active {
  text-decoration: underline;
  font-weight: 600;
}

/* Language select */
.lang,
#languageSwitcher {
  padding: 10px 12px;
  border-radius: 10px;
  border: 0;
  min-width: 160px;
}

/* Mobile/Tablet page dropdown */
.nav-controls {
  display: none;
  width: 100%;
  justify-content: center;
}

.page-switcher,
#pageSwitcher {
  padding: 10px 12px;
  border-radius: 10px;
  border: 0;
  min-width: 220px;
}

/* ===================== HEADER SLIDER ===================== */
.slider {
  position: relative;
  width: 100%;
  height: clamp(360px, 60vh, 640px);
  overflow: hidden;
  border-bottom-left-radius: 18px;
  border-bottom-right-radius: 18px;
}

.slides {
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity 600ms ease, transform 1200ms ease;
}

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

.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.25));
}

.slide-content {
  position: relative;
  z-index: 2;
  max-width: 980px;
  margin: 0 auto;
  padding: 0 20px;
  height: 100%;
  display: grid;
  align-content: center;
  gap: 12px;
  color: #fff;
  text-align: left;
}

.slide-content h1 {
  font-size: clamp(26px, 4vw, 46px);
  line-height: 1.15;
}

.slide-content p {
  font-size: clamp(14px, 1.6vw, 18px);
  max-width: 650px;
  opacity: 0.95;
}

.slide-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 6px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  border: 1px solid transparent;
}

.btn.primary {
  background: #ffffff;
  color: #5a3e2b;
}

.btn.ghost {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(6px);
}

/* Prev/Next */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: 0;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: rgba(0,0,0,0.35);
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  z-index: 3;
}

.slider-btn.prev { left: 12px; }
.slider-btn.next { right: 12px; }

.slider-btn:hover {
  background: rgba(0,0,0,0.5);
}

/* Dots */
.slider-dots {
  position: absolute;
  left: 50%;
  bottom: 14px;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 3;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 0;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
}

.dot.active {
  background: rgba(255, 255, 255, 1);
}

/* ===================== MARQUEE (SEAMLESS) ===================== */
.marquee {
  width: 100%;
  overflow: hidden;
  background: rgba(255,255,255,0.14);
  color: rgba(255,255,255,0.92);
  padding: 8px 0;
  white-space: nowrap;
}

.marquee-inner {
  display: flex;
  width: max-content;
  gap: 40px;
  will-change: transform;
  animation: marquee-seamless var(--marquee-speed, 14s) linear infinite;
}

.marquee-item {
  flex: 0 0 auto;
  font-size: 14px;
  letter-spacing: 0.5px;
}

@keyframes marquee-seamless {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-1 * var(--marquee-distance, 0px))); }
}

.marquee:hover .marquee-inner {
  animation-play-state: paused;
}

@media (prefers-reduced-motion: reduce) {
  .marquee-inner { animation: none; }
}

/* ===================== CONTENT ===================== */
.content {
  padding: 60px 20px;
  text-align: center;
  max-width: 980px;
  margin: 0 auto;
}

.content h2 {
  font-size: 30px;
  margin-bottom: 15px;
}

/* ===================== SERVICE CIRCLE SLIDER ===================== */
.service-slider {
  width: 100%;
  overflow: hidden;
  margin-top: 30px;
}

.service-track {
  display: flex;
  gap: 26px;
  width: max-content;
  animation: service-scroll 22s linear infinite;
}

.service-item {
  flex: 0 0 auto;
  text-align: center;
}

.service-item img {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 10px 24px rgba(0,0,0,0.18);
  transition: transform 0.3s ease;
}

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

.service-item p {
  margin-top: 10px;
  font-size: 14px;
  font-weight: 600;
  color: #5a3e2b;
}

@keyframes service-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.service-slider:hover .service-track {
  animation-play-state: paused;
}

/* ===================== CARDS ===================== */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
  margin-top: 20px;
}

.card {
  background: #434343;
  padding: 16px;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
}

/* ===================== SERVICES GRID (9 ITEMS) ===================== */
.service-grid {
  margin-top: 22px;
  grid-template-columns: repeat(4, 1fr);
}

.service-card {
  display: grid;
  gap: 10px;
  text-align: left;
  align-content: start;
}

.service-img img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

.service-card h3 {
  font-size: 16px;
  color: #333;
}

.service-btn {
  width: fit-content;
  padding: 8px 12px;
  border-radius: 10px;
}

/* ===================== PRICING TABLE ===================== */
.table-wrap {
  width: min(820px, 92%);
  margin: 20px auto 0;
  overflow-x: auto;
}

.price-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
  min-width: 520px;
}

.price-table th,
.price-table td {
  padding: 12px 14px;
  border-bottom: 1px solid #eee;
  text-align: left;
}

/* ===================== GALLERY GRID ===================== */
.grid {
  width: min(900px, 92%);
  margin: 20px auto 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 14px;
}

.thumb {
  background: #fff;
  height: 140px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
}

/* ===================== FOOTER GRID (FINAL) ===================== */
.footer {
  background-color: #5a3e2b;
  color: #fff;
  padding: 40px 20px 20px;
}

.footer-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.footer-col h4 {
  margin-bottom: 12px;
  font-size: 16px;
}

.footer-col p,
.footer-col li {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 8px;
}

.footer-col a {
  color: #fff;
  text-decoration: none;
}

.footer-col a:hover {
  text-decoration: underline;
}

.footer-logo img {
  max-width: 140px;
}

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

.footer-social {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-social a{
  width: 40px;
  height: 40px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.12);
}

.footer-social img{
  width: 22px;
  height: 22px;
  object-fit: contain;
  filter: none;             
  display: block;
}


.footer-bottom {
  text-align: center;
  font-size: 13px;
  margin-top: 30px;
  opacity: 0.85;
}

/* ===================== ABOUT PAGE ===================== */
.about-page { text-align: left; }

.about-image {
  margin: 18px auto;
  width: min(980px, 100%);
}

.about-image img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  box-shadow: 0 10px 24px rgba(0,0,0,0.12);
}

.about-text p {
  line-height: 1.9;
  font-size: 16px;
  margin-top: 10px;
  color: #dcb361;
  white-space: pre-line;
}

.about-contact {
  margin-top: 18px;
  background: #fff;
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 10px 24px rgba(0,0,0,0.06);
}

.about-contact h3 {
  margin-bottom: 10px;
  color: #5a3e2b;
}

.about-contact ul { list-style: none; padding: 0; }
.about-contact li { margin: 8px 0; line-height: 1.7; }
.about-contact a { color: #5a3e2b; text-decoration: none; }
.about-contact a:hover { text-decoration: underline; }

/* ===================== SERVICE MODAL ===================== */
.modal {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 9999;
}

.modal.show {
  display: block;
}

.modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
}

.modal-panel {
  position: relative;
  width: min(720px, 92%);
  margin: 9vh auto 0;
  background: #fff;
  border-radius: 18px;
  padding: 18px 18px 16px;
  box-shadow: 0 18px 48px rgba(0,0,0,0.25);
}

.modal-close {
  position: absolute;
  right: 12px;
  top: 10px;
  border: 0;
  background: transparent;
  font-size: 20px;
  cursor: pointer;
  color: #5a3e2b;
}

.modal-title {
  margin: 10px 6px 8px;
  font-size: 20px;
  color: #5a3e2b;
}

.modal-desc {
  margin: 0 6px 12px;
  line-height: 1.8;
  color: #333;
  white-space: pre-line;
}

.modal-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
  padding-top: 8px;
  border-top: 1px solid #eee;
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 900px) {
  .navbar {
    padding: 12px 16px;
    gap: 10px;
  }

  /* hide desktop links, show dropdown */
  .nav-desktop { display: none; }
  .nav-controls { display: flex; }

  .content { padding: 44px 16px; }
  .thumb { height: 160px; }

  /* footer becomes 2x2 */
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* services becomes 2 columns */
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  /* Make selects not too wide on phones */
  .lang,
  #languageSwitcher {
    min-width: 110px;
    width: auto;
    padding: 8px 8px;
    font-size: 13px;
  }

  .page-switcher,
  #pageSwitcher {
    width: 100%;
    min-width: 0;
    max-width: 320px;
  }

  .brand-logo { height: 32px; }
  .brand-text { font-size: 16px; }

  /* slider cleaner on phones */
  .slider-btn { display: none; }
  .slide-content { text-align: center; }
  .slide-actions { justify-content: center; }

  /* service circle slider smaller */
  .service-item img {
    width: 110px;
    height: 110px;
  }

  /* services grid 1 column */
  .service-grid {
    grid-template-columns: 1fr;
  }

  .service-img img {
    height: 170px;
  }

  /* footer stacks */
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-logo img {
    margin: 0 auto;
  }

  /* modal buttons center */
  .modal-panel { margin-top: 12vh; }
  .modal-actions { justify-content: center; }
}

/* ===================== PRICING GRID ===================== */
.pricing-grid {
  display: grid;
  margin-top: 22px;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.price-card {
  display: grid;
  gap: 10px;
  text-align: left;
}

.price-card h3 {
  font-size: 16px;
}

.price-card p {
  color: #666;
  font-size: 14px;
}

@media (max-width: 900px) {
  .pricing-grid { grid-template-columns: 1fr; }
}

/* ===================== MODAL (Reusable) ===================== */
.modal {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 999;
}

.modal.show { display: block; }

.modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
}

.modal-panel {
  position: relative;
  z-index: 2;
  width: min(720px, 92vw);
  max-height: 82vh;
  overflow: auto;
  margin: 7vh auto;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 16px 44px rgba(0,0,0,0.22);
  padding: 16px;
}

.modal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.modal-head h3 {
  font-size: 18px;
  color: #5a3e2b;
}

.modal-x {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 0;
  background: rgba(90,62,43,0.1);
  color: #5a3e2b;
  font-size: 22px;
  cursor: pointer;
}

.modal-body {
  white-space: pre-wrap;
  line-height: 1.7;
  font-size: 14px;
  color: #333;
  background: #faf7f4;
  border-radius: 12px;
  padding: 14px;
  margin: 10px 0 14px;
  font-family: "Segoe UI", sans-serif;
}

.modal-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.thumb {
  border-radius: 14px;
  overflow: hidden;
  background: #f4f4f4;
}

.thumb img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.thumb:hover img {
  transform: scale(1.06);
}

/* ===== Gallery Grid ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.thumb {
  border-radius: 14px;
  overflow: hidden;
  cursor: zoom-in;
}

.thumb img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.thumb:hover img {
  transform: scale(1.06);
}

/* ===== Gallery Modal ===== */
#galleryModal {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: none;
}

#galleryModal.show {
  display: block;
}

#galleryModal .modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.75);
}

.gallery-modal-panel {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  margin: 5vh auto;
  background: transparent;
  text-align: center;
}

.gallery-modal-panel img {
  max-width: 100%;
  max-height: 90vh;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0,0,0,.45);
}

/* close button */
.gallery-modal-panel .modal-x {
  position: absolute;
  top: -14px;
  right: -14px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: none;
  background: #fff;
  font-size: 22px;
  cursor: pointer;
}

/* ===================== THEME OVERRIDE (HOME-LANDING) ===================== */
:root{
  --bg:#0f0c08;
  --panel: rgba(255,255,255,0.05);
  --panel2: rgba(255,255,255,0.08);
  --text:#f2f2f2;
  --muted: rgba(255,255,255,0.72);
  --gold:#dcb361;
  --gold2:#b98a2f;
}

body{
  background: var(--bg);
  color: #dcb361;
}

/* container / section */
.container{ width:min(1120px, 92%); margin:0 auto; }
.section{ padding: 64px 0; }
.section--soft{ background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.00)); }
.section-head.center{ text-align:center; }
.section-head.left{ text-align:left; }
.section-kicker{
  letter-spacing: .28em;
  text-transform: uppercase;
  color: rgba(220,179,97,0.95);
  font-size: 12px;
}
.section-title{ margin-top:10px; font-size: clamp(22px, 3vw, 34px); }
.section-desc{ margin-top:10px; color: var(--muted); }

/* panels */
.panel{
  background: var(--panel);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 18px 60px rgba(0,0,0,0.35);
}

/* navbar overlay feel */
.navbar--overlay{
  background: rgba(0,0,0,0.55) !important;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(8px);
  position: sticky;
  top: 0;
  z-index: 1000;
}


/* hero */
.hero--tall{ height: clamp(520px, 82vh, 820px); }
.hero-kicker{
  letter-spacing: .35em;
  text-transform: uppercase;
  color: rgba(220,179,97,0.95);
  font-size: 12px;
}
.hero-content h1{
  letter-spacing: .06em;
  text-transform: uppercase;
}
.slide-overlay{
  background:
    radial-gradient(900px 420px at 20% 20%, rgba(220,179,97,0.18), transparent 60%),
    linear-gradient(rgba(0,0,0,0.72), rgba(0,0,0,0.35));
}

/* marquee dark */
.marquee--dark{
  background: rgba(255,255,255,0.04);
  color: rgba(220,179,97,0.92);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

/* buttons */
.btn.primary{
  background: var(--gold);
  color: #2a1b0e;
}
.btn.ghost{
  background: rgba(255,255,255,0.08);
  color: #946565;
  border-color: rgba(220,179,97,0.35);
}
.btn.ghost:hover{ background: rgba(255,255,255,0.12); }

/* cards darker */
.cards--dark .card--dark{
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--text);
}
.card--dark p{ color: var(--muted); }
.text-link{ color: rgba(220,179,97,0.95); text-decoration:none; }
.text-link:hover{ text-decoration: underline; }

/* service circle bigger & gold shadow */
.service-item img{
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 14px 34px rgba(0,0,0,0.42);
  border: 1px solid rgba(220,179,97,0.25);
}
.service-item p{
  color: rgba(220,179,97,0.92);
  letter-spacing: .04em;
}

/* feature section */
.feature{
  display:grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 18px;
  align-items: center;
}
.feature-actions{ margin-top: 14px; display:flex; gap: 12px; flex-wrap: wrap; }
.feature-media{ padding: 0; overflow:hidden; }
.feature-img{ width:100%; height: 380px; object-fit: cover; display:block; border-radius: 18px; }

/* video */
.video-wrap{ padding: 0; overflow:hidden; }
.video{ width:100%; height: 420px; display:block; border:0; }

/* pricing grid */
.price-grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.price-col{
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 14px;
}
.price-col h3{ color: rgba(220,179,97,0.95); font-size: 14px; letter-spacing: .12em; text-transform: uppercase; }
.price-col ul{ list-style:none; padding:0; margin-top: 10px; }
.price-col li{ padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,0.06); color: var(--muted); }
.price-col li:last-child{ border-bottom: 0; }

/* gallery home */
.gallery-home{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.g-item{
  border-radius: 16px;
  overflow:hidden;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
  display:block;
}
.g-item img{
  width:100%;
  height: 220px;
  object-fit: cover;
  display:block;
  transition: transform .35s ease;
}
.g-item:hover img{ transform: scale(1.05); }

/* faq */
.faq details{
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 12px 14px;
  margin: 10px 0;
}
.faq summary{
  cursor: pointer;
  color: rgba(220,179,97,0.95);
  font-weight: 700;
}
.faq p{ margin-top: 10px; color: var(--muted); line-height: 1.8; }

/* contact */
.contact{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  align-items: start;
}
.contact-title{ margin: 8px 0 10px; }
.contact-lines{ display:grid; gap: 10px; margin-top: 10px; color: var(--muted); }
.contact-lines a{ color: rgba(220,179,97,0.95); text-decoration:none; }
.contact-lines a:hover{ text-decoration: underline; }

.field{ display:grid; gap: 6px; margin: 10px 0; }
.field span{ color: rgba(255,255,255,0.78); font-size: 13px; }
.field input, .field textarea{
  width:100%;
  background: rgba(0,0,0,0.25);
  border: 1px solid rgba(255,255,255,0.14);
  color: #fff;
  border-radius: 12px;
  padding: 10px 12px;
  outline: none;
}
.field input:focus, .field textarea:focus{
  border-color: rgba(220,179,97,0.55);
}

/* footer social (你之前修好的那套) */
.footer-social a{
  width: 40px;
  height: 40px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.12);
}
.footer-social img{
  width: 22px;
  height: 22px;
  object-fit: contain;
  filter: none;
  display:block;
}
.footer-social--contact{ margin-top: 14px; }

/* responsive */
@media (max-width: 980px){
  .feature{ grid-template-columns: 1fr; }
  .feature-img{ height: 320px; }
  .price-grid{ grid-template-columns: repeat(2, 1fr); }
  .gallery-home{ grid-template-columns: repeat(2, 1fr); }
  .contact{ grid-template-columns: 1fr; }
  .video{ height: 320px; }
}
@media (max-width: 520px){
  .price-grid{ grid-template-columns: 1fr; }
  .gallery-home{ grid-template-columns: 1fr; }
  .video{ height: 240px; }
}

/* ===================== FOOTER UNIFY (DARK GOLD) ===================== */
.footer{
  background: rgba(0,0,0,0.55) !important;
  border-top: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.88);
  padding: 56px 20px 22px !important;
}

.footer-grid{
  width: min(1120px, 92%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1.4fr 1fr 1fr;
  gap: 28px;
  align-items: start;
}

.footer-col h4{
  color: rgba(220,179,97,0.95);
  letter-spacing: .06em;
  text-transform: uppercase;
  font-size: 14px;
  margin-bottom: 14px;
}

.footer-col p,
.footer-col li{
  color: rgba(255,255,255,0.75);
  line-height: 1.75;
}

.footer-col a{
  color: rgba(220,179,97,0.95);
  text-decoration: none;
}
.footer-col a:hover{ text-decoration: underline; }

.footer-logo img{
  max-width: 160px;
  height: auto;
  display: block;
  filter: drop-shadow(0 14px 30px rgba(0,0,0,0.45));
}

/* 统一社交 icon 按钮样式（让 footer 跟上方 contact 一致） */
.footer-social{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-social a{
  width: 42px;
  height: 42px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(220,179,97,0.22);
  box-shadow: 0 10px 26px rgba(0,0,0,0.35);
}

.footer-social a:hover{
  background: rgba(255,255,255,0.14);
  border-color: rgba(220,179,97,0.38);
}

.footer-social img{
  width: 22px;
  height: 22px;
  object-fit: contain;
  display: block;
  filter: none !important; /* 关键：取消你旧的 invert 白色滤镜 */
  opacity: .95;
}

.footer-bottom{
  width: min(1120px, 92%);
  margin: 26px auto 0;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.08);
  text-align: center;
  color: rgba(255,255,255,0.65);
  font-size: 13px;
}

/* responsive */
@media (max-width: 980px){
  .footer-grid{
    grid-template-columns: 1fr 1fr;
    gap: 22px;
  }
}
@media (max-width: 520px){
  .footer-grid{
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer-logo img{ margin: 0 auto; }
  .footer-social{ justify-content: center; }
}

/* ===================== FEEDBACK (DARK GOLD / PREMIUM / FINAL) ===================== */
.feedback .feedback-head{
  text-align:center;
  margin-bottom: 18px;
}

.feedback .section-title{
  color: rgba(220,179,97,0.95);
  letter-spacing: .22em;
  font-size: 44px;
  font-family: "Georgia", serif;
}

.feedback .section-h2{
  margin-top: 10px;
  color: rgba(255,255,255,0.82);
  font-weight: 500;
}

/* 外框面板：高级暗金玻璃 */
.feedback-wrap{
  position: relative;
  display: grid;
  grid-template-columns: 72px 1fr 72px;
  align-items: center;
  gap: 12px;

  padding: 28px 18px;
  border-radius: 22px;
  overflow: hidden;

  background:
    radial-gradient(900px 520px at 50% 40%, rgba(220,179,97,0.14), transparent 62%),
    radial-gradient(600px 340px at 20% 10%, rgba(255,255,255,0.06), transparent 55%),
    rgba(255,255,255,0.04);

  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 22px 70px rgba(0,0,0,0.52);
}

/* 内部内容区 */
.fb-stage{
  position: relative;
  display: grid;
  justify-items: center;
  gap: 12px;
  padding: 22px 10px 10px;
}

/* 三头像：左右对称居中，不重叠 */
.fb-row{
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
  width: 100%;
  max-width: 980px;
  margin: 8px auto 0;
}

/* 左右侧头像按钮（带金边 + hover 放大） */
.fb-side-btn{
  justify-self: center;
  width: 126px;
  height: 126px;
  border-radius: 999px;
  cursor: pointer;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  border: 2px solid rgba(220,179,97,0.45);
  background: rgba(255,255,255,0.06);
  box-shadow: 0 14px 40px rgba(0,0,0,0.40);

  transition: transform .22s ease, background .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.fb-side-btn:hover{
  transform: translateY(-2px) scale(1.04);
  background: rgba(255,255,255,0.09);
  border-color: rgba(220,179,97,0.78);
  box-shadow: 0 18px 52px rgba(0,0,0,0.50);
}

.fb-side-img{
  width: 108px;
  height: 108px;
  border-radius: 999px;
  object-fit: cover;
  opacity: .80;
  filter: grayscale(.25) contrast(1.02);

  transition: opacity .22s ease, filter .22s ease, transform .22s ease;
}

.fb-side-btn:hover .fb-side-img{
  opacity: .96;
  filter: grayscale(0) contrast(1.05);
  transform: scale(1.02);
}

/* 中间主头像：金边 + 金色光晕跟随 */
.fb-center{
  display: flex;
  justify-content: center;
  align-items: center;
}

.fb-main-wrap{
  position: relative;
  width: 240px;
  height: 240px;
  border-radius: 999px;
  display: grid;
  place-items: center;
}

/* 金色光晕（跟随主头像） */
.fb-halo{
  position: absolute;
  inset: -22px;
  border-radius: 999px;

  background: radial-gradient(circle at 50% 40%,
    rgba(220,179,97,0.55) 0%,
    rgba(220,179,97,0.22) 28%,
    rgba(220,179,97,0.10) 44%,
    rgba(0,0,0,0) 70%
  );

  filter: blur(10px);
  opacity: .85;
  pointer-events: none;
  animation: fbHaloPulse 2.4s ease-in-out infinite;
}

@keyframes fbHaloPulse{
  0%,100% { transform: scale(0.985); opacity: .82; }
  50%     { transform: scale(1.02);  opacity: 1; }
}

.fb-main{
  width: 220px;
  height: 220px;
  border-radius: 999px;
  object-fit: cover;

  border: 6px solid rgba(220,179,97,0.95);
  background: rgba(255,255,255,0.06);
  box-shadow:
    0 26px 70px rgba(0,0,0,0.60),
    0 0 0 1px rgba(255,255,255,0.10) inset;

  transition: transform .28s ease, opacity .28s ease, filter .28s ease;
}

.fb-main-wrap:hover .fb-main{
  transform: scale(1.015);
}

/* 文案：置中 */
.fb-meta{
  text-align: center;
  margin-top: 18px;
  padding: 10px 10px 0;
}

.fb-name{
  font-size: 28px;
  letter-spacing: .16em;
  color: rgba(255,255,255,0.95);
}

.fb-line{
  width: 66px;
  height: 2px;
  background: rgba(220,179,97,0.95);
  margin: 10px auto 12px;
  border-radius: 999px;
}

.fb-text{
  width: min(760px, 92%);
  margin: 0 auto;
  color: rgba(255,255,255,0.78);
  line-height: 1.85;
  font-size: 16px;
}

/* dots */
.fb-dots{
  margin-top: 16px;
  display: flex;
  gap: 10px;
  justify-content: center;
}

.fb-dot{
  width: 9px;
  height: 9px;
  border-radius: 999px;
  border: 0;
  background: rgba(255,255,255,0.26);
  cursor: pointer;
  transition: transform .18s ease, background .18s ease;
}

.fb-dot:hover{ transform: scale(1.25); }
.fb-dot.active{ background: rgba(220,179,97,0.95); }

/* 箭头：高级玻璃质感 + 金色描边 + hover 发光 */
.fb-arrow{
  position: relative;
  z-index: 6;

  width: 52px;
  height: 52px;
  border-radius: 999px;
  cursor: pointer;

  border: 1px solid rgba(220,179,97,0.40);
  background: rgba(0,0,0,0.28);
  color: rgba(255,255,255,0.92);
  font-size: 22px;

  display: grid;
  place-items: center;

  backdrop-filter: blur(10px);
  box-shadow:
    0 14px 40px rgba(0,0,0,0.42),
    0 0 0 1px rgba(255,255,255,0.06) inset;

  transition: transform .18s ease, background .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.fb-arrow:hover{
  transform: translateY(-1px) scale(1.03);
  background: rgba(0,0,0,0.38);
  border-color: rgba(220,179,97,0.70);
  box-shadow:
    0 18px 55px rgba(0,0,0,0.55),
    0 0 18px rgba(220,179,97,0.20);
}

.fb-arrow:active{
  transform: scale(0.98);
}

/* 切换动画（避免叠图，主图淡入淡出） */
.fb-swap-out{ opacity: 0; transform: scale(0.985); filter: blur(1px); }
.fb-swap-in{  opacity: 1; transform: scale(1);     filter: blur(0); }

/* ===================== RESPONSIVE ===================== */
@media (max-width: 980px){
  .fb-row{ gap: 18px; }
  .fb-side-btn{ width: 116px; height: 116px; }
  .fb-side-img{ width: 98px; height: 98px; }
  .fb-main-wrap{ width: 220px; height: 220px; }
  .fb-main{ width: 200px; height: 200px; }
}

@media (max-width: 820px){
  /* 手机：左右头像隐藏，主头像居中，箭头变小不挡 */
  .feedback-wrap{
    grid-template-columns: 56px 1fr 56px;
    padding: 22px 12px;
  }

  .fb-row{
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .fb-side-btn{ display:none; }

  .fb-main-wrap{ width: 210px; height: 210px; }
  .fb-main{ width: 190px; height: 190px; }
  .fb-halo{ inset: -18px; filter: blur(9px); }

  .fb-arrow{
    width: 46px;
    height: 46px;
    font-size: 20px;
  }

  .fb-name{ font-size: 24px; }
  .fb-text{ font-size: 15px; }
}

@media (max-width: 420px){
  .feedback-wrap{
    grid-template-columns: 46px 1fr 46px;
  }
  .fb-main-wrap{ width: 190px; height: 190px; }
  .fb-main{ width: 172px; height: 172px; }
}

/* ===================== NAVBAR (LEFT LOGO | CENTER MENU | RIGHT LANG) ===================== */
.navbar{
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(0,0,0,0.78);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

/* 三栏：左 brand / 中 menu / 右 language */
.nav-row{
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 14px 26px;
}

/* Brand */
.brand{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #fff;
  font-weight: 800;
  white-space: nowrap;
}

.brand-logo{
  height: 34px;
  width: auto;
  display: block;
}

.brand-text{
  font-size: 18px;
  letter-spacing: 0.04em;
}

/* Center menu: 必须用 justify-content:center 才会真正置中 */
.nav-links{
  list-style: none;
  display: flex;
  justify-content: center;   /* 关键：置中 */
  align-items: center;
  gap: 26px;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
}

.nav-links a{
  color: rgba(255,255,255,0.92);
  text-decoration: none;
  padding: 8px 10px;
  border-radius: 10px;
  font-weight: 600;
}

.nav-links a:hover{
  background: rgba(255,255,255,0.10);
}

.nav-links a.active{
  text-decoration: underline;
  text-underline-offset: 6px;
}

/* Right language */
.nav-right{
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.lang,
#languageSwitcher{
  min-width: 160px;
  padding: 10px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.06);
  color: #fff;
  outline: none;
}

#languageSwitcher option{ color:#000; } /* 下拉选项可读 */

/* Mobile controls row */
.nav-controls{
  display: none;
  padding: 10px 16px 14px;
  border-top: 1px solid rgba(255,255,255,0.07);
}

.page-switcher,
#pageSwitcher{
  width: 100%;
  padding: 10px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.06);
  color: #fff;
  outline: none;
}
#pageSwitcher option{ color:#000; }

/* Responsive */
@media (max-width: 900px){
  .nav-desktop{ display:none; }
  .nav-controls{ display:block; }

  .nav-row{
    grid-template-columns: auto 1fr auto; /* 仍然保持左右 */
    padding: 12px 14px;
    gap: 12px;
  }

  .brand-logo{ height: 30px; }
  .brand-text{ font-size: 16px; }

  .lang,#languageSwitcher{
    min-width: 120px;
    padding: 8px 10px;
    border-radius: 12px;
    font-size: 13px;
  }
}

@media (max-width: 480px){
  .nav-row{ padding: 10px 12px; }
  .brand-text{ display:none; } /* 超小屏只留 logo 更干净 */
	}

/* ===================== NAVBAR PRO (Logo Left / Menu Center / Flags Right) ===================== */
.navbar--pro{
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

/* 三列：左Logo / 中菜单 / 右国旗 */
.nav-top--grid{
  width: 100%;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
}

/* Left brand */
.brand--left{
  justify-self: start;
}

/* Center menu */
.nav-links--center{
  justify-self: center;
  display: flex;
  gap: 22px;
  align-items: center;
  padding: 0;
  margin: 0;
}

/* Right flags group */
.lang-flags{
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: 0 10px 30px rgba(0,0,0,0.35);
}
/* ===================== NAVBAR PRO (Logo Left / Menu Center / Flags Right) ===================== */
.navbar--pro{
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.nav-top--grid{
  width: 100%;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
}

/* Left */
.brand--left{ justify-self: start; }

/* Center menu */
.nav-links--center{
  justify-self: center;
  display: flex;
  gap: 22px;
  align-items: center;
  padding: 0;
  margin: 0;
}

/* Right flags container */
.lang-flags{
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: 0 10px 30px rgba(0,0,0,0.35);
}

/* ✅ 强制国旗按钮固定小尺寸（不管你全局 img 怎么写都不会被撑大） */
.navbar--pro .lang-flags .flag-btn{
  width: 32px !important;
  height: 32px !important;
  padding: 0 !important;
  border-radius: 999px !important;
  border: 1px solid rgba(220,179,97,0.25);
  background: rgba(0,0,0,0.18);
  cursor: pointer;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  overflow: hidden !important; /* 🔥透明圆形裁切关键 */
  line-height: 0;
  box-shadow: 0 8px 18px rgba(0,0,0,0.35);
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease, background .18s ease;
}

.navbar--pro .lang-flags .flag-btn:hover{
  transform: translateY(-1px) scale(1.10);
  background: rgba(0,0,0,0.32);
  border-color: rgba(220,179,97,0.70);
  box-shadow: 0 0 0 2px rgba(220,179,97,0.18), 0 12px 26px rgba(0,0,0,0.45);
}

.navbar--pro .lang-flags .flag-btn.active{
  border-color: rgba(220,179,97,0.95);
  box-shadow: 0 0 0 3px rgba(220,179,97,0.26), 0 14px 28px rgba(0,0,0,0.55);
}

/* ✅ 国旗图片：必须跟随按钮大小，且保持透明 */
.navbar--pro .lang-flags .flag-img{
  width: 100% !important;
  height: 100% !important;
  display: block !important;
  object-fit: cover !important;
  background: transparent !important;
  border-radius: 999px !important;
  /* 防止某些全局样式影响渲染 */
  max-width: none !important;
  max-height: none !important;
}

/* ✅ 隐藏旧的 select（但仍在 DOM 给 app.js 用） */
.lang--hidden{
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0,0,0,0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

/* Mobile: hide desktop menu, keep dropdown + flags */
@media (max-width: 900px){
  .nav-desktop{ display:none; }
  .nav-controls{ display:flex; }

  .lang-flags{ padding: 6px 8px; gap: 8px; }
  .navbar--pro .lang-flags .flag-btn{
    width: 28px !important;
  }
/* ===================== FLAGS HARD OVERRIDE (PUT AT END OF FILE) ===================== */
/* 目的：不管你全局 img/button 怎么写，这里都强制国旗固定小尺寸，不会变 512 */
.navbar.navbar--pro .lang-flags{
  display: inline-flex !important;
  align-items: center !important;
  gap: 10px !important;
  padding: 6px 10px !important;
  border-radius: 999px !important;
  background: rgba(255,255,255,0.06) !important;
  border: 1px solid rgba(255,255,255,0.10) !important;
  box-shadow: 0 10px 30px rgba(0,0,0,0.35) !important;
}

/* 强制按钮固定宽高（不吃全局 button{width:100%}） */
.navbar.navbar--pro .lang-flags .flag-btn{
  width: 32px !important;
  height: 32px !important;
  min-width: 32px !important;
  min-height: 32px !important;
  max-width: 32px !important;
  max-height: 32px !important;

  padding: 0 !important;
  margin: 0 !important;

  border-radius: 999px !important;
  overflow: hidden !important;          /* ✅裁掉白底/透明外圈 */
  background: transparent !important;   /* ✅不会出现按钮白底 */
  border: 1px solid rgba(220,179,97,0.35) !important;

  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;

  flex: 0 0 32px !important;            /* ✅防止被拉伸 */
  line-height: 0 !important;
  cursor: pointer !important;

  box-shadow: 0 8px 18px rgba(0,0,0,0.35) !important;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease !important;
}

/* 关键：图片也固定像素，不用 100%（避免被全局 img 规则放大） */
.navbar.navbar--pro .lang-flags .flag-btn .flag-img{
  width: 32px !important;
  height: 32px !important;
  min-width: 32px !important;
  min-height: 32px !important;
  max-width: 32px !important;
  max-height: 32px !important;

  display: block !important;
  object-fit: cover !important;
  border-radius: 999px !important;
  background: transparent !important;
}

/* hover + active 高级感 */
.navbar.navbar--pro .lang-flags .flag-btn:hover{
  transform: translateY(-1px) scale(1.10) !important;
  border-color: rgba(220,179,97,0.75) !important;
  box-shadow: 0 0 0 2px rgba(220,179,97,0.18), 0 12px 26px rgba(0,0,0,0.45) !important;
}
.navbar.navbar--pro .lang-flags .flag-btn.active{
  border-color: rgba(220,179,97,0.95) !important;
  box-shadow: 0 0 0 3px rgba(220,179,97,0.26), 0 14px 28px rgba(0,0,0,0.55) !important;
}

/* 手机再缩小 */
@media (max-width: 900px){
  .navbar.navbar--pro .lang-flags .flag-btn,
  .navbar.navbar--pro .lang-flags .flag-btn .flag-img{
    width: 28px !important;
    height: 28px !important;
    min-width: 28px !important;
    min-height: 28px !important;
    max-width: 28px !important;
    max-height: 28px !important;
    flex: 0 0 28px !important;
  }
}

/* 旧下拉保留给 JS 用，但视觉完全隐藏 */
.lang--hidden{
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0,0,0,0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

/* ===================== ABOUT PAGE (DARK GOLD UNIFY) ===================== */
/* 放在 style.css 最底部，强制覆盖旧样式 */

.about-page{
  text-align: left;
}

/* 正文段落：提高可读性（你现在太灰） */
.about-text p{
  color: rgba(255,255,255,0.78) !important;
  line-height: 1.9 !important;
}

/* 图片区保持一致 */
.about-image img{
  width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: 0 16px 44px rgba(0,0,0,0.35);
}

/* ✅ 联系信息卡片：改成深色玻璃 + 金色标题 */
.about-contact{
  margin-top: 18px;
  background: rgba(255,255,255,0.04) !important;   /* 深色玻璃 */
  border: 1px solid rgba(255,255,255,0.12) !important;
  border-radius: 18px !important;
  padding: 18px !important;
  box-shadow: 0 18px 55px rgba(0,0,0,0.45) !important;
}

/* 标题 */
.about-contact h3{
  margin: 0 0 12px 0 !important;
  color: rgba(220,179,97,0.95) !important;         /* 金色 */
  letter-spacing: .10em;
  text-transform: uppercase;
  font-size: 14px !important;
}

/* 列表排版 */
.about-contact ul{
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
  display: grid;
  gap: 10px;
}

/* 每一行：更统一 */
.about-contact li{
  display: grid;
  grid-template-columns: 78px 1fr;
  gap: 10px;
  align-items: start;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(0,0,0,0.18);
  border: 1px solid rgba(255,255,255,0.08);
}

/* 左侧 label */
.about-contact strong{
  color: rgba(255,255,255,0.80) !important;
  font-weight: 700;
}

/* 右侧内容 */
.about-contact span,
.about-contact a{
  color: rgba(255,255,255,0.86) !important;
  text-decoration: none;
}

/* 链接：金色 */
.about-contact a{
  color: rgba(220,179,97,0.95) !important;
}
.about-contact a:hover{
  text-decoration: underline;
}

/* 手机：label 变两行更舒服 */
@media (max-width: 520px){
  .about-contact li{
    grid-template-columns: 1fr;
  }
}

/* ===================== PAGE HERO (UNIFY DARK GOLD) ===================== */
.page-hero{
  padding: 56px 0 18px;
  background:
    radial-gradient(900px 420px at 20% 20%, rgba(220,179,97,0.16), transparent 60%),
    linear-gradient(rgba(0,0,0,0.75), rgba(0,0,0,0.25));
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.page-title{
  color: rgba(255,255,255,0.95);
  font-size: clamp(26px, 4vw, 44px);
  letter-spacing: .08em;
  text-transform: uppercase;
}

.page-subtitle{
  margin-top: 10px;
  color: rgba(255,255,255,0.72);
  line-height: 1.7;
  max-width: 820px;
}


/* ===================== FIX PACK (ISOLATED) ===================== */
/* 1) Services/Blog modal close buttons were using .btn.ghost (white text) on white modal panels */
.modal-panel .btn.ghost,
.modal-panel .btn.ghost:visited{
  color: #5a3e2b !important;
  background: rgba(90,62,43,0.10) !important;
  border-color: rgba(90,62,43,0.25) !important;
  backdrop-filter: none !important;
}
.modal-panel .btn.ghost:hover{
  background: rgba(90,62,43,0.16) !important;
  border-color: rgba(90,62,43,0.35) !important;
}

/* 2) Pricing page: keep 2-column layout + fixed "mobile-size" thumbs on ALL screens (only within pricing grid) */
.pricing-grid{ 
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
@media (max-width: 900px){
  .pricing-grid{ grid-template-columns: 1fr; }
}

.pricing-grid .price-card.price-split{
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}
.pricing-grid .price-left{ flex: 1 1 auto; min-width: 0; }

.pricing-grid .price-thumb{
  flex: 0 0 128px;
  width: 128px;
  height: 96px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.06);
}
.pricing-grid .price-thumb img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  max-width: none;
  max-height: none;
}
@media (max-width: 520px){
  .pricing-grid .price-thumb{
    flex-basis: 120px;
    width: 120px;
    height: 90px;
  }
}

/* 3) Gallery modal: re-center the zoomed image */
#galleryModal .modal-overlay{
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery-modal-panel{
  margin: 0 !important;
}
}

/* PRICING 页：隐藏 navbar 的 Pricing（桌面） */
body.pricing-page .nav-links a[data-key="pricing"]{
  display: none !important;
}

/* PRICING 页：隐藏手机下拉 Pricing（注意：部分浏览器不支持 option display:none） */
body.pricing-page #pageSwitcher option[data-key="pricing"]{
  display: none !important;
}
