﻿/* =================================================================
   Angel Massage Spa · Sun City, AZ
   Design: Desert Warm — Sand / Sunset Orange / Cactus Green
   Typography: Playfair Display + DM Sans
   ================================================================= */

:root {
  /* Desert Palette */
  --sand-light: #faf6ef;
  --sand: #f3ebda;
  --sand-deep: #e8dcc4;
  --sunset: #d97a3c;
  --sunset-deep: #b85f24;
  --sunset-light: #f4b884;
  --cactus: #4a6651;
  --cactus-deep: #2f4534;
  --terracotta: #c66a4f;
  --ink: #1f1a14;
  --ink-soft: #443b30;
  --ink-light: #6b5e4f;
  --line: #d8cdb6;
  
  /* Layout */
  --max: 1200px;
  --gutter: 24px;
  
  /* Effects */
  --shadow-soft: 0 4px 14px rgba(31, 26, 20, 0.06);
  --shadow-warm: 0 12px 32px rgba(184, 95, 36, 0.18);
  --radius-sm: 6px;
  --radius: 12px;
  --radius-lg: 20px;
  --t: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: Arial, 'Helvetica Neue', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-soft);
  background: var(--sand-light);
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--sunset-deep); text-decoration: none; transition: var(--t); }
a:hover { color: var(--ink); }

h1, h2, h3, h4 {
  font-family: Georgia, 'Times New Roman', serif;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.01em;
  line-height: 1.2;
}

h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); margin-bottom: 1rem; }
h3 { font-size: 1.4rem; margin-bottom: .6rem; }
h4 { font-size: 1.1rem; }

p { margin-bottom: 1rem; }

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

section { padding: 90px 0; }

/* =================================================================
   HEADER (no topbar, simpler than 12994)
   ================================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 246, 239, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 18px var(--gutter);
  display: flex;
  align-items: center;
  gap: 16px;
}
.header-inner .brand {
  margin-right: auto;  /* Logo 占左侧 */
}
.header-inner .nav {
  margin-right: 8px;
}

.brand {
  display: flex;
  align-items: baseline;
  gap: 10px;
  font-family: Georgia, 'Times New Roman', serif;
}

.brand .name {
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.brand .tagline {
  font-size: .72rem;
  letter-spacing: 0.18em;
  color: var(--sunset-deep);
  text-transform: uppercase;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
}

.nav { display: flex; align-items: center; gap: 2px; }
.nav a {
  padding: 8px 12px;
  font-size: 0.92rem;
  color: var(--ink-soft, #555);
  text-decoration: none;
  border-radius: 6px;
  font-weight: 500;
  transition: var(--t);
}
.nav a:hover { background: var(--sand); color: var(--ink); }
.nav a.active { color: var(--sunset-deep); }

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: var(--ink);
  color: var(--sand-light);
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.92rem;
  transition: var(--t);
}
.header-cta:hover {
  background: var(--sunset-deep);
  color: #fff;
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  background: none;
  border: 1px solid var(--line);
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  font-size: 1.2rem;
  cursor: pointer;
  color: var(--ink);
}

/* =================================================================
   HERO (medium height, room background fully visible)
   ================================================================= */
.hero {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: center;
  background: var(--ink);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url('../images/angel-massage-spa-sun-city-room.webp') center/cover;
  opacity: 0.42;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    rgba(31, 26, 20, 0.58) 0%,
    rgba(184, 95, 36, 0.22) 60%,
    rgba(31, 26, 20, 0.62) 100%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: var(--max);
  margin: 0 auto;
  padding: 70px var(--gutter) 60px;
  width: 100%;
  text-align: center;
  color: #fff;
}

.hero-eyebrow {
  display: inline-block;
  padding: 7px 18px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 28px;
  backdrop-filter: blur(8px);
}

.hero h1 {
  color: #fff;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
  font-weight: 500;
}

.hero h1 em {
  font-style: italic;
  color: var(--sunset-light);
  font-weight: 400;
}

.hero-sub {
  font-size: 1.15rem;
  max-width: 560px;
  margin: 0 auto 40px;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.65;
}

.hero-cta {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-chat-prompt {
  margin-top: 22px;
  font-size: 0.95rem;
  font-style: italic;
  opacity: 0.9;
  color: inherit;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border: 2px solid transparent;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--t);
  font-family: inherit;
  text-decoration: none;
}

.btn-primary {
  background: var(--sunset);
  color: #fff;
  border-color: var(--sunset);
}
.btn-primary:hover {
  background: var(--sunset-deep);
  border-color: var(--sunset-deep);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-warm);
}

.btn-ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.4);
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border-color: #fff;
}

.btn-dark {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}
.btn-dark:hover {
  background: var(--sunset-deep);
  border-color: var(--sunset-deep);
  color: #fff;
}

.btn-outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-outline:hover {
  background: var(--ink);
  color: #fff;
}

/* =================================================================
   STATS BAR (under hero - DIFFERENT from 12994's hero-meta)
   ================================================================= */
.stats-bar {
  background: var(--sand);
  padding: 44px 0;
  border-bottom: 1px solid var(--line);
}

.stats-grid {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.stat {
  text-align: center;
  padding: 0 16px;
  border-right: 1px solid var(--line);
}
.stat:last-child { border-right: none; }

.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.6rem;
  font-weight: 600;
  color: var(--sunset-deep);
  line-height: 1;
  margin-bottom: 6px;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
}
.stat-num small {
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--ink-light);
}
.stat-label {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-light);
  font-weight: 500;
}

/* =================================================================
   SECTION HEADERS (different style than 12994)
   ================================================================= */
.section-tag {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sunset-deep);
  margin-bottom: 14px;
}

.section-tag::before {
  content: '·';
  margin-right: 8px;
  color: var(--sunset);
}

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}

.section-head h2 em {
  font-style: italic;
  color: var(--sunset-deep);
}

.section-head p {
  margin-top: 14px;
  font-size: 1.05rem;
  color: var(--ink-light);
}

/* =================================================================
   ABOUT — left text right image (split, different from 12994)
   ================================================================= */
.about-section { background: var(--sand-light); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 64px;
  align-items: center;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.about-text .section-tag { margin-bottom: 16px; }
.about-text h2 { margin-bottom: 22px; }
.about-text p { color: var(--ink-soft); margin-bottom: 18px; font-size: 1.05rem; }

.about-feats {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.feat {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.feat-icon {
  flex: 0 0 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--sunset);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-family: 'Playfair Display', serif;
}

.feat-text strong {
  display: block;
  color: var(--ink);
  font-weight: 600;
  margin-bottom: 2px;
}
.feat-text span {
  color: var(--ink-light);
  font-size: 0.95rem;
}

.about-image {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-warm);
}
.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-image::before {
  content: '';
  position: absolute;
  top: -20px;
  right: -20px;
  width: 120px;
  height: 120px;
  background: var(--sunset);
  border-radius: 50%;
  z-index: -1;
  opacity: 0.3;
}

/* =================================================================
   SERVICES — horizontal cards (DIFFERENT layout than 12994)
   ================================================================= */
.services-section { background: var(--sand); }

.svc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.svc-card {
  background: var(--sand-light);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--t);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
}

.svc-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-warm);
  border-color: var(--sunset-light);
}

.svc-img {
  aspect-ratio: 16/11;
  overflow: hidden;
  background: var(--sand-deep);
}
.svc-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s;
}
.svc-card:hover .svc-img img { transform: scale(1.06); }

.svc-body {
  padding: 26px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.svc-body h3 { color: var(--ink); margin-bottom: 8px; }
.svc-body p { color: var(--ink-light); font-size: 0.96rem; flex: 1; margin-bottom: 16px; }

.svc-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.svc-price {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: var(--sunset-deep);
  font-weight: 600;
}
.svc-arrow {
  color: var(--ink);
  font-size: 1.15rem;
  transition: var(--t);
}
.svc-card:hover .svc-arrow { transform: translateX(6px); color: var(--sunset-deep); }

.svc-chat-prompt {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px dashed rgba(0,0,0,0.12);
  font-size: 0.85rem;
  font-style: italic;
  color: var(--sunset-deep);
  line-height: 1.5;
}

/* =================================================================
   PRICING — Horizontal pricing strip (DIFFERENT than 12994 cards)
   ================================================================= */
.pricing-section {
  background: var(--ink);
  color: var(--sand-light);
  padding: 100px 0;
}

.pricing-section .section-head h2 { color: #fff; }
.pricing-section .section-head p { color: rgba(255, 255, 255, 0.75); }
.pricing-section .section-tag { color: var(--sunset-light); }

.pricing-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  max-width: 900px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  overflow: hidden;
}

.price-block {
  padding: 50px 40px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  transition: var(--t);
}
.price-block:last-child { border-right: none; }
.price-block:hover { background: rgba(217, 122, 60, 0.08); }

.price-duration {
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sunset-light);
  margin-bottom: 18px;
  font-weight: 600;
}

.price-amount {
  font-family: 'Playfair Display', serif;
  font-size: 4.5rem;
  font-weight: 600;
  color: #fff;
  line-height: 1;
  margin-bottom: 14px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
.price-amount sup {
  font-size: 1.6rem;
  margin-top: 14px;
  margin-right: 4px;
  font-weight: 400;
}

.price-desc {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
}

.pricing-note {
  text-align: center;
  margin-top: 40px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.92rem;
}

/* =================================================================
   GALLERY — Masonry waterfall, every image fully visible, no crop
   Visual weight balanced by reordering tall images across columns
   ================================================================= */
.gallery-section { background: var(--sand-light); }

.mag-grid {
  column-count: 3;
  column-gap: 16px;
  max-width: var(--max);
  margin: 0 auto;
}

.mag-grid > a {
  display: block;
  margin-bottom: 16px;
  break-inside: avoid;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: var(--t);
  position: relative;
  background: var(--sand);
}

.mag-grid > a:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-warm);
}

.mag-grid img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 1s;
}

.mag-grid > a:hover img { transform: scale(1.04); }

/* =================================================================
   REVIEWS — clean Google CTA (no fake testimonials, by 军规)
   ================================================================= */
.reviews-section {
  background: linear-gradient(135deg, var(--sand) 0%, var(--sand-deep) 100%);
}

.reviews-cta-card {
  background: var(--sand-light);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 60px 48px;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.reviews-cta-card::before {
  content: '★';
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 8rem;
  color: var(--sunset);
  opacity: 0.08;
  line-height: 1;
}

.reviews-cta-card h2 {
  position: relative;
  margin-bottom: 14px;
}

.reviews-cta-card p {
  color: var(--ink-light);
  font-size: 1.02rem;
  margin-bottom: 32px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.review-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.review-buttons .btn { margin: 0; }

/* =================================================================
   VISIT — contact info with map
   ================================================================= */
.visit-section { background: var(--sand-light); }

.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 48px;
  align-items: stretch;
}

.visit-info {
  background: var(--ink);
  color: var(--sand-light);
  padding: 50px 44px;
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
}

.visit-info .section-tag { color: var(--sunset-light); margin-bottom: 14px; }
.visit-info h2 { color: #fff; margin-bottom: 28px; }

.visit-list {
  list-style: none;
  margin: 0 0 32px 0;
  padding: 0;
  flex: 1;
}
.visit-list li {
  display: flex;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.visit-list li:last-child { border-bottom: none; }

.visit-icon {
  flex: 0 0 36px;
  height: 36px;
  background: rgba(217, 122, 60, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sunset-light);
  font-size: 1rem;
}

.visit-text strong {
  display: block;
  color: #fff;
  margin-bottom: 2px;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.visit-text span, .visit-text a {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.05rem;
}
.visit-text a:hover { color: var(--sunset-light); }

.visit-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 400px;
  border: 1px solid var(--line);
}
.visit-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* =================================================================
   CTA STRIP — final call-to-action
   ================================================================= */
.cta-strip {
  background: var(--sunset);
  color: #fff;
  padding: 70px 0;
  text-align: center;
}

.cta-strip h2 {
  color: #fff;
  margin-bottom: 14px;
}

.cta-strip h2 em {
  font-style: italic;
  color: var(--sand-light);
}

.cta-strip p {
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.1rem;
  max-width: 540px;
  margin: 0 auto 30px;
}

.cta-strip .btn-dark {
  background: var(--ink);
}

/* =================================================================
   FOOTER
   ================================================================= */
.site-footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.72);
  padding: 70px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand .name {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  color: #fff;
  margin-bottom: 4px;
  font-weight: 600;
}
.footer-brand .tagline {
  font-size: 0.78rem;
  color: var(--sunset-light);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.footer-brand p {
  font-size: 0.95rem;
  line-height: 1.7;
}

.footer-col h4 {
  color: #fff;
  font-size: 0.84rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 18px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
}

.footer-col ul { list-style: none; }
.footer-col li { padding: 6px 0; }
.footer-col a {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.95rem;
  transition: var(--t);
}
.footer-col a:hover { color: var(--sunset-light); }

.footer-bottom {
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.55);
  flex-wrap: wrap;
  gap: 14px;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.55);
  margin: 0 8px;
}

/* =================================================================
   RESPONSIVE
   ================================================================= */
@media (max-width: 980px) {
  section { padding: 60px 0; }
  .hero { min-height: auto; padding: 100px 0 70px; }
  .hero-inner { padding: 60px var(--gutter) 40px; }
  
  .nav { display: none; position: absolute; top: 100%; left: 0; right: 0;
         background: var(--sand-light); flex-direction: column;
         padding: 20px var(--gutter); gap: 4px; box-shadow: var(--shadow-soft);
         border-bottom: 1px solid var(--line); }
  .nav.open { display: flex; }
  .nav a { padding: 14px 16px; width: 100%; border-bottom: 1px solid var(--line); }
  .nav a:last-child { border-bottom: none; }
  .menu-toggle { display: block; }
  .header-cta { display: none; }
  
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px 0; }
  .stat { border-right: none; padding: 16px; }
  .stat:nth-child(1), .stat:nth-child(2) { border-bottom: 1px solid var(--line); }
  
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-image { aspect-ratio: 4/3; max-width: 520px; margin: 0 auto; }
  
  .svc-grid { grid-template-columns: 1fr 1fr; gap: 18px; }
  
  .pricing-strip { grid-template-columns: 1fr; }
  .price-block { border-right: none; border-bottom: 1px solid rgba(255, 255, 255, 0.12); }
  .price-block:last-child { border-bottom: none; }
  
  .mag-grid { column-count: 2; }
  
  .visit-grid { grid-template-columns: 1fr; gap: 24px; }
  .visit-map { min-height: 320px; }
  
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .reviews-cta-card { padding: 44px 28px; }
}

@media (max-width: 560px) {
  section { padding: 48px 0; }
  .container, .header-inner, .hero-inner { padding-left: 18px; padding-right: 18px; }
  
  .hero h1 { font-size: 2.2rem; }
  .hero-sub { font-size: 1rem; }
  .hero-cta { flex-direction: column; width: 100%; }
  .hero-cta .btn { width: 100%; justify-content: center; }
  
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-num { font-size: 2rem; }
  
  .svc-grid { grid-template-columns: 1fr; }
  
  .price-amount { font-size: 3.5rem; }
  
  .mag-grid { column-count: 1; }
  
  .visit-info { padding: 36px 28px; }
  
  .review-buttons { flex-direction: column; }
  .review-buttons .btn { width: 100%; justify-content: center; }
  
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* =================================================================
   FAQ
   ================================================================= */
.faq-section {
  padding: 100px 0;
  background: var(--sand-light);
}
.faq-list {
  max-width: 820px;
  margin: 48px auto 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.faq-item {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 14px;
  overflow: hidden;
  transition: var(--t);
}
.faq-item[open] { box-shadow: 0 6px 22px rgba(0,0,0,0.06); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 28px;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--ink);
  position: relative;
  padding-right: 60px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 28px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--sunset-deep);
  transition: var(--t);
}
.faq-item[open] summary::after { content: '−'; }
.faq-item p {
  padding: 0 28px 24px;
  margin: 0;
  line-height: 1.75;
  color: var(--ink-soft, #555);
}

/* =================================================================
   LOGO
   ================================================================= */
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.brand-logo {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  flex-shrink: 0;
}
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.brand-text .name {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--ink);
  letter-spacing: 0.2px;
}
.brand-text .tagline {
  font-size: 0.65rem;
  color: var(--sunset-deep);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-top: 3px;
}
.footer-logo {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  display: block;
  margin-bottom: 14px;
}
@media (max-width: 768px) {
  .brand-logo { width: 38px; height: 38px; }
  .brand-text .name { font-size: 0.92rem; }
  .brand-text .tagline { font-size: 0.55rem; }
  .brand { gap: 8px; }
}

/* =================================================================
   FAQ 折叠
   ================================================================= */
#faq-more-wrap {
  display: none;
  flex-direction: column;
  gap: 14px;
  margin-top: 14px;
}
#faq-more-wrap.is-open { display: flex; }

.faq-toggle-btn {
  margin: 24px auto 0;
  display: block;
  padding: 14px 32px;
  background: transparent;
  border: 2px solid var(--sunset-deep);
  border-radius: 50px;
  color: var(--sunset-deep);
  font-family: inherit;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--t);
}
.faq-toggle-btn:hover {
  background: var(--sunset-deep);
  color: #fff;
}

/* =================================================================
   Reviews CTA
   ================================================================= */
.reviews-cta-section {
  padding: 90px 0;
  background: var(--ink);
}
.reviews-cta-card {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  background: var(--sand-light);
  padding: 56px 40px;
  border-radius: 18px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.2);
}
.reviews-cta-card .section-tag {
  color: var(--sunset-deep);
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 14px;
  font-weight: 600;
}
.reviews-cta-card h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  font-weight: 600;
  margin: 0 0 18px;
  line-height: 1.2;
  color: var(--ink);
}
.reviews-cta-card h2 em {
  color: var(--sunset-deep);
  font-style: italic;
}
.reviews-cta-card p {
  font-size: 1rem;
  line-height: 1.7;
  margin: 0 0 28px;
  color: var(--ink);
  opacity: 0.85;
}
.reviews-cta-section .review-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 22px;
}
.reviews-cta-section .btn-outline {
  background: transparent;
  border: 2px solid var(--ink);
  color: var(--ink);
}
.reviews-cta-section .btn-outline:hover {
  border-color: var(--sunset-deep);
  color: var(--sunset-deep);
}
.review-chat-prompt {
  font-style: italic;
  font-size: 0.9rem !important;
  opacity: 0.65 !important;
  margin: 0 !important;
}
@media (max-width: 768px) {
  .reviews-cta-section { padding: 60px 0; }
  .reviews-cta-card { padding: 40px 24px; }
  .reviews-cta-card h2 { font-size: 1.8rem; }
}

/* =================================================================
   Service Page Hero Image
   ================================================================= */
.service-hero-img {
  background: var(--sand-light);
  padding: 0 0 60px;
}
.service-hero-img img {
  display: block;
  width: 100%;
  max-width: 1200px;
  height: 480px;
  object-fit: cover;
  margin: 0 auto;
  border-radius: 14px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}
@media (max-width: 768px) {
  .service-hero-img img { height: 280px; border-radius: 8px; }
  .service-hero-img { padding: 0 0 40px; }
}

/* =================================================================
   手机端优化（≤768px）
   ================================================================= */
@media (max-width: 768px) {
  /* Section 间距整体收紧 */
  section,
  .about-section,
  .services-section,
  .pricing-section,
  .gallery-section,
  .visit-section,
  .reviews-cta-section,
  .faq-section,
  .cta-strip {
    padding-top: 50px !important;
    padding-bottom: 50px !important;
  }

  /* Hero 适配 */
  .hero {
    min-height: 70vh !important;
    padding: 60px 18px 40px !important;
  }
  .hero h1 {
    font-size: 1.85rem !important;
    line-height: 1.25 !important;
  }
  .hero-sub {
    font-size: 0.95rem !important;
    line-height: 1.6 !important;
  }
  .hero-eyebrow {
    font-size: 0.7rem !important;
  }

  /* 按钮在手机端整列、不分散 */
  .hero-cta { gap: 10px !important; }
  .hero-cta .btn {
    padding: 13px 20px !important;
    font-size: 0.92rem !important;
  }

  /* Service 卡片图：保中上部分（人脸优先），不切头 */
  .svc-img {
    aspect-ratio: 4/3 !important;
  }
  .svc-img img {
    object-position: center 30% !important;
  }

  /* About 区图片 */
  .about-image img,
  .about-section img {
    object-position: center 25% !important;
  }

  /* Gallery 图：保留主体（多用于人像）*/
  .mag-grid img {
    object-position: center 30% !important;
  }

  /* Service 详情页 Hero 图 */
  .service-hero-img img {
    height: 220px !important;
    object-position: center 30% !important;
  }

  /* H2 字号 */
  h2 {
    font-size: 1.7rem !important;
    line-height: 1.25 !important;
  }
  .section-head h2 {
    font-size: 1.7rem !important;
  }

  /* Stats 间距 */
  .stats-bar { padding: 30px 0 !important; }
  .stat-num { font-size: 2rem !important; }

  /* Visit 区 */
  .visit-info { padding: 28px 22px !important; }
  .visit-grid { gap: 24px !important; }

  /* FAQ 区项目内边距 */
  .faq-item summary {
    padding: 16px 22px !important;
    padding-right: 50px !important;
    font-size: 0.95rem !important;
  }
  .faq-item p {
    padding: 0 22px 18px !important;
    font-size: 0.92rem !important;
  }

  /* Footer */
  .site-footer { padding: 50px 0 30px !important; }
  .footer-grid { gap: 28px !important; }

  /* Header */
  .header-inner { padding: 12px 18px !important; }

  /* CTA Strip */
  .cta-strip h2 { font-size: 1.6rem !important; }
}

/* =================================================================
   Areas Grid
   ================================================================= */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
  margin: 24px 0;
}
.area-card {
  display: block;
  padding: 22px 20px;
  background: var(--sand-light);
  border: 1px solid var(--line);
  border-radius: 12px;
  text-decoration: none;
  color: inherit;
  transition: var(--t);
}
.area-card:hover {
  border-color: var(--sunset-deep);
  background: #fff;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.06);
}
.area-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  margin: 0 0 6px;
  color: var(--ink);
}
.area-meta {
  font-size: 0.88rem;
  color: var(--sunset-deep);
  font-weight: 600;
  margin: 0 0 4px !important;
}
.area-route {
  font-size: 0.8rem;
  color: var(--ink-soft, #777);
  margin: 0 0 12px !important;
}
.area-arrow {
  font-size: 0.85rem;
  color: var(--sunset-deep);
  font-weight: 500;
}

/* AI Overview Block */
.ai-overview {
  margin-top: 30px;
  padding: 24px 28px;
  background: var(--sand-light);
  border-left: 4px solid var(--sunset-deep);
  border-radius: 8px;
  font-size: 0.98rem;
  line-height: 1.7;
}
.ai-overview strong {
  color: var(--sunset-deep);
  display: block;
  margin-bottom: 8px;
  font-size: 0.85rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

/* Blog Grid */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
  margin: 24px 0;
}
.blog-card {
  display: block;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  text-decoration: none;
  color: inherit;
  transition: var(--t);
}
.blog-card:hover {
  border-color: var(--sunset-deep);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}
.blog-card-image {
  width: calc(100% + 48px);
  height: 190px;
  margin: -24px -24px 20px;
  object-fit: cover;
  border-bottom: 1px solid var(--line);
  border-radius: var(--radius) var(--radius) 0 0;
}
.blog-card-tag {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--sunset-deep);
  margin-bottom: 8px;
  font-weight: 600;
}
.blog-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.18rem;
  margin: 0 0 10px;
  line-height: 1.35;
  color: var(--ink);
}
.blog-card p {
  font-size: 0.92rem;
  color: var(--ink-soft, #555);
  line-height: 1.55;
  margin: 0 0 14px !important;
}
.blog-card-arrow {
  font-size: 0.88rem;
  color: var(--sunset-deep);
  font-weight: 500;
}
.blog-hero-image {
  width: min(860px, calc(100% - 48px));
  margin: 10px auto 56px;
  padding: 0;
}
.blog-hero-image img {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center center;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-warm);
}

@media (max-width: 768px) {
  .blog-card-image {
    height: 160px;
    object-position: center 35%;
  }
  .blog-hero-image {
    width: calc(100% - 32px);
    margin: 0 auto 36px;
  }
  .blog-hero-image img {
    border-radius: var(--radius);
  }
}
