/* ========================================
   纵横装修公司 - Best Renovation NYC
   Colors: Gold #B8860B / Charcoal #1a1a1a / Cream #F5F0E8
   ======================================== */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+SC:wght@300;400;500;700;900&family=Noto+Serif+SC:wght@400;700&display=swap');

/* --- CSS Variables --- */
:root {
  --gold: #B8860B;
  --gold-light: #D4A843;
  --gold-dark: #8B6508;
  --charcoal: #1a1a1a;
  --charcoal-light: #2d2d2d;
  --cream: #F5F0E8;
  --cream-dark: #E8E0D0;
  --cream-light: #FAF8F4;
  --white: #ffffff;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --transition: all 0.3s ease;
  --shadow: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -2px rgba(0,0,0,0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.1);
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Noto Sans SC', 'PingFang SC', 'Microsoft YaHei', sans-serif;
  background: var(--cream);
  color: var(--charcoal);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

::selection { background: rgba(184,134,11,0.3); color: var(--charcoal); }

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
button { cursor: pointer; border: none; font-family: inherit; }

/* --- Scrollbar --- */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold-dark); }

/* --- Utility --- */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section { padding: 5rem 0; }
.section-dark { background: var(--charcoal); color: var(--white); }
.section-white { background: var(--white); }
.section-cream { background: var(--cream); }
.section-cream-light { background: var(--cream-light); }

.text-center { text-align: center; }
.text-gold { color: var(--gold); }

.gold-gradient {
  background: linear-gradient(135deg, #D4A843, #B8860B, #8B6508);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* --- Typography --- */
.section-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--gold);
  margin-bottom: 1rem;
}

.heading-primary {
  font-family: 'Noto Serif SC', serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.heading-secondary {
  font-family: 'Noto Serif SC', serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1rem;
}

.section-desc {
  max-width: 640px;
  margin: 0 auto 3rem;
  color: var(--gray-600);
  font-size: 1rem;
}

/* --- Buttons --- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: var(--gold);
  color: var(--white);
  padding: 0.875rem 2rem;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: var(--transition);
  border: none;
}
.btn-primary:hover { background: var(--gold-dark); transform: translateY(-2px); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--gold);
  padding: 0.875rem 2rem;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: 2px solid var(--gold);
  transition: var(--transition);
}
.btn-outline:hover { background: var(--gold); color: var(--white); transform: translateY(-2px); }

.btn-white-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--white);
  padding: 0.875rem 2rem;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: 2px solid rgba(255,255,255,0.3);
  transition: var(--transition);
}
.btn-white-outline:hover { border-color: var(--gold); background: var(--gold); color: var(--white); }

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

/* ========================================
   HEADER / NAVIGATION
   ======================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.25rem 0;
  transition: all 0.5s ease;
}

.header.scrolled {
  background: rgba(26,26,26,0.95);
  backdrop-filter: blur(12px);
  padding: 0.75rem 0;
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo { display: flex; align-items: center; gap: 0.75rem; }

.logo a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  transition: opacity 0.3s;
}
.logo a:hover { opacity: 0.8; }

.logo-icon {
  width: 40px;
  height: 40px;
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.logo a:hover .logo-icon { background: var(--gold); }
.logo a:hover .logo-icon span { color: var(--white); }

.logo-icon span {
  font-family: 'Noto Serif SC', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold);
  transition: var(--transition);
}

.logo-text { display: flex; flex-direction: column; }
.logo-text .zh { font-family: 'Noto Serif SC', serif; font-size: 1.1rem; font-weight: 700; color: var(--white); letter-spacing: 0.1em; }
.logo-text .en { font-size: 0.6rem; text-transform: uppercase; letter-spacing: 0.3em; color: var(--gold); }

.nav-desktop { display: none; align-items: center; gap: 0.25rem; }
.nav-desktop a {
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.8);
  transition: var(--transition);
}
.nav-desktop a:hover,
.nav-desktop a.active { color: var(--gold); }

.nav-desktop .nav-cta {
  margin-left: 1rem;
  padding: 0.6rem 1.5rem;
  background: var(--gold);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}
.nav-desktop .nav-cta:hover { background: var(--gold-dark); }

/* Mobile toggle */
.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
}
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile menu */
.nav-mobile {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: rgba(26,26,26,0.98);
  backdrop-filter: blur(16px);
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: all 0.5s ease;
}
.nav-mobile.open { max-height: 500px; padding: 1.5rem 0; }

.nav-mobile a {
  display: block;
  padding: 1rem 1.5rem;
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: var(--transition);
}
.nav-mobile a:hover,
.nav-mobile a.active { color: var(--gold); }

.nav-mobile .nav-cta-mobile {
  display: block;
  margin: 1.5rem;
  padding: 0.875rem;
  background: var(--gold);
  color: var(--white);
  text-align: center;
  font-weight: 700;
  font-size: 0.85rem;
}

@media (min-width: 1024px) {
  .nav-desktop { display: flex; }
  .nav-toggle { display: none; }
  .nav-mobile { display: none; }
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

@media (max-width: 768px) {
  .hero-bg { background-attachment: scroll; }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(26,26,26,0.75) 0%,
    rgba(26,26,26,0.4) 50%,
    rgba(26,26,26,0.85) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  padding: 0 1.5rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid rgba(184,134,11,0.3);
  background: rgba(184,134,11,0.1);
  backdrop-filter: blur(8px);
  padding: 0.5rem 1.5rem;
  margin-bottom: 2rem;
  animation: fadeIn 0.8s ease forwards;
}
.hero-badge .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); }
.hero-badge span { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.3em; color: var(--gold); }

.hero h1 {
  font-family: 'Noto Serif SC', serif;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1.5rem;
  animation: fadeUp 0.8s ease forwards;
}

.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.7);
  max-width: 600px;
  margin: 0 auto 2.5rem;
  line-height: 1.8;
  animation: fadeUp 0.8s ease 0.2s both;
}

.hero .btn-group { animation: fadeUp 0.8s ease 0.4s both; }

.hero-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 4rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  animation: fadeUp 0.8s ease 0.6s both;
}

.hero-stat-value {
  font-family: 'Noto Serif SC', serif;
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--gold);
}
.hero-stat-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.5);
  margin-top: 0.25rem;
}

@media (min-width: 768px) {
  .hero-stats { grid-template-columns: repeat(4, 1fr); }
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
}
.scroll-indicator .mouse {
  width: 24px;
  height: 40px;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}
.scroll-indicator .wheel {
  width: 4px;
  height: 8px;
  background: var(--gold);
  border-radius: 2px;
}

/* Page hero (inner pages) */
.page-hero {
  position: relative;
  min-height: 55vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-hero .hero-bg { background-attachment: fixed; }
@media (max-width: 768px) { .page-hero .hero-bg { background-attachment: scroll; } }

.page-hero .hero-content { padding-top: 5rem; }

.page-hero h1 {
  font-family: 'Noto Serif SC', serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
}

.page-hero p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.7);
  max-width: 600px;
  margin: 0 auto;
}

/* ========================================
   CARDS
   ======================================== */
.card {
  background: var(--white);
  overflow: hidden;
  transition: all 0.5s ease;
}
.card:hover { transform: translateY(-8px); box-shadow: var(--shadow-xl); }

.card-img {
  position: relative;
  height: 220px;
  overflow: hidden;
}
.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.card:hover .card-img img { transform: scale(1.1); }

.card-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,26,26,0.8) 0%, transparent 60%);
}

.card-icon {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  width: 48px;
  height: 48px;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
}
.card-icon svg { width: 24px; height: 24px; color: var(--white); stroke: var(--white); fill: none; }

.card-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--gold);
  padding: 0.25rem 0.75rem;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.card-body { padding: 1.5rem; }
.card-body h3 {
  font-family: 'Noto Serif SC', serif;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.card-body p { font-size: 0.9rem; color: var(--gray-600); line-height: 1.7; }

.card-features { margin-top: 1rem; }
.card-features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--gray-500);
  padding: 0.25rem 0;
}
.card-features li::before {
  content: '';
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

.card-accent {
  height: 3px;
  width: 0;
  background: var(--gold);
  transition: width 0.5s ease;
}
.card:hover .card-accent { width: 100%; }

/* ========================================
   ICON CARDS (services highlight)
   ======================================== */
.icon-card {
  text-align: center;
  padding: 2.5rem 1.5rem;
  transition: all 0.5s ease;
  border: 1px solid transparent;
}
.icon-card:hover { background: rgba(255,255,255,0.05); border-color: rgba(184,134,11,0.2); }

.icon-card-circle {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.5rem;
  border: 1px solid rgba(184,134,11,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.icon-card:hover .icon-card-circle { border-color: var(--gold); background: var(--gold); }
.icon-card-circle svg { width: 28px; height: 28px; stroke: var(--gold); fill: none; transition: var(--transition); }
.icon-card:hover .icon-card-circle svg { stroke: var(--white); }

.icon-card h3 {
  font-family: 'Noto Serif SC', serif;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}
.icon-card p { font-size: 0.85rem; color: rgba(255,255,255,0.6); line-height: 1.7; }

/* On light bg */
.icon-card-light { background: var(--white); border: 1px solid var(--gray-200); }
.icon-card-light:hover { border-color: rgba(184,134,11,0.3); box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.icon-card-light:hover .icon-card-circle { background: var(--gold); }
.icon-card-light h3 { color: var(--charcoal); }
.icon-card-light p { color: var(--gray-600); }

/* ========================================
   GRID LAYOUTS
   ======================================== */
.grid-2 { display: grid; grid-template-columns: 1fr; gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: 1fr; gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.grid-6 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }

@media (min-width: 768px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
  .grid-6 { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 1024px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-6 { grid-template-columns: repeat(3, 1fr); }
}

/* Two column layout */
.split { display: grid; grid-template-columns: 1fr; gap: 4rem; align-items: center; }
@media (min-width: 1024px) {
  .split { grid-template-columns: 1fr 1fr; }
  .split.reverse { direction: rtl; }
  .split.reverse > * { direction: ltr; }
}

/* ========================================
   PROCESS / TIMELINE
   ======================================== */
.process-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; }
@media (min-width: 768px) { .process-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .process-grid { grid-template-columns: repeat(4, 1fr); } }

.process-step {
  position: relative;
  text-align: center;
  padding: 2rem;
}
.process-number {
  font-family: 'Noto Serif SC', serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: rgba(184,134,11,0.15);
  margin-bottom: 1rem;
}
.process-step h3 {
  font-family: 'Noto Serif SC', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.75rem;
}
.process-step p { font-size: 0.85rem; color: rgba(255,255,255,0.6); }

.process-arrow {
  display: none;
  position: absolute;
  right: -1rem;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(184,134,11,0.3);
}
@media (min-width: 1024px) { .process-arrow { display: block; } }

/* ========================================
   TESTIMONIALS
   ======================================== */
.testimonial-card {
  background: var(--cream-light);
  border: 1px solid var(--gray-200);
  padding: 2rem;
  transition: var(--transition);
}
.testimonial-card:hover { border-color: rgba(184,134,11,0.3); box-shadow: var(--shadow-lg); }

.testimonial-stars { display: flex; gap: 0.25rem; margin-bottom: 1rem; }
.testimonial-stars svg { width: 16px; height: 16px; fill: var(--gold); stroke: var(--gold); }

.testimonial-text {
  font-size: 0.9rem;
  font-style: italic;
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.testimonial-author { display: flex; align-items: center; gap: 0.75rem; }
.testimonial-avatar {
  width: 40px;
  height: 40px;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--white);
}
.testimonial-name { font-size: 0.9rem; font-weight: 700; }
.testimonial-location { font-size: 0.75rem; color: var(--gray-500); }

/* Testimonial carousel */
.testimonial-slider { position: relative; overflow: hidden; }
.testimonial-track {
  display: flex;
  transition: transform 0.5s ease;
}
.testimonial-slide {
  min-width: 100%;
  padding: 0 0.5rem;
}
@media (min-width: 768px) { .testimonial-slide { min-width: 50%; } }
@media (min-width: 1024px) { .testimonial-slide { min-width: 33.333%; } }

.slider-controls {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
}
.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gray-300);
  border: none;
  transition: var(--transition);
  cursor: pointer;
}
.slider-dot.active { background: var(--gold); transform: scale(1.2); }

/* ========================================
   FORMS
   ======================================== */
.form-group { margin-bottom: 1.5rem; }
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: var(--charcoal);
}
.form-group label .required { color: #ef4444; }

.form-row { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 768px) { .form-row { grid-template-columns: 1fr 1fr; } }

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
input[type="date"],
select,
textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 1px solid var(--gray-300);
  background: var(--white);
  font-family: inherit;
  font-size: 0.9rem;
  color: var(--charcoal);
  transition: var(--transition);
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 2px rgba(184,134,11,0.15);
}
textarea { resize: vertical; min-height: 120px; }
::placeholder { color: var(--gray-400); }

.file-upload {
  border: 2px dashed var(--gray-300);
  padding: 2rem;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
}
.file-upload:hover { border-color: var(--gold); background: rgba(184,134,11,0.03); }
.file-upload svg { margin: 0 auto 0.5rem; stroke: var(--gray-400); }
.file-upload p { font-size: 0.85rem; color: var(--gray-500); }

.form-success {
  text-align: center;
  padding: 4rem 2rem;
}
.form-success svg { margin: 0 auto 1rem; stroke: var(--gold); }
.form-success h3 {
  font-family: 'Noto Serif SC', serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.form-success p { color: var(--gray-600); }

/* ========================================
   PORTFOLIO / GALLERY
   ======================================== */
.filter-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 3rem;
}
.filter-tab {
  padding: 0.5rem 1.5rem;
  font-size: 0.85rem;
  font-weight: 500;
  background: var(--white);
  border: 1px solid var(--gray-300);
  cursor: pointer;
  transition: var(--transition);
}
.filter-tab:hover { border-color: var(--gold); color: var(--gold); }
.filter-tab.active { background: var(--gold); color: var(--white); border-color: var(--gold); }

.masonry { columns: 1; column-gap: 1.5rem; }
@media (min-width: 768px) { .masonry { columns: 2; } }
@media (min-width: 1024px) { .masonry { columns: 3; } }

.masonry-item {
  break-inside: avoid;
  margin-bottom: 1.5rem;
  overflow: hidden;
  background: var(--white);
  transition: all 0.5s ease;
}
.masonry-item:hover { box-shadow: var(--shadow-xl); transform: translateY(-4px); }

.masonry-item img { width: 100%; display: block; transition: transform 0.7s ease; }
.masonry-item:hover img { transform: scale(1.05); }

.masonry-item .card-body h3 { font-size: 1.05rem; }
.masonry-meta { display: flex; gap: 1rem; margin-top: 0.5rem; font-size: 0.8rem; color: var(--gray-500); }
.masonry-meta span { display: flex; align-items: center; gap: 0.25rem; }

/* ========================================
   ABOUT PAGE
   ======================================== */
.about-image-box {
  position: relative;
}
.about-image-box img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}
.about-image-badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--gold);
  padding: 1.5rem;
  text-align: center;
}
@media (max-width: 1024px) { .about-image-badge { right: 1rem; bottom: -1rem; } }
.about-image-badge .value {
  font-family: 'Noto Serif SC', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--white);
}
.about-image-badge .label { font-size: 0.8rem; color: rgba(255,255,255,0.8); }

.value-card {
  text-align: center;
  border: 1px solid var(--gray-200);
  padding: 2.5rem 2rem;
  transition: var(--transition);
  height: 100%;
}
.value-card:hover { border-color: rgba(184,134,11,0.3); box-shadow: var(--shadow-lg); }
.value-card-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.5rem;
  background: rgba(184,134,11,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}
.value-card-icon svg { width: 32px; height: 32px; stroke: var(--gold); fill: none; }
.value-card h3 {
  font-family: 'Noto Serif SC', serif;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.value-card p { font-size: 0.9rem; color: var(--gray-600); line-height: 1.7; }

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 0.75rem 1.5rem;
}
.check-list svg { width: 20px; height: 20px; flex-shrink: 0; stroke: var(--gold); fill: none; margin-top: 2px; }
.check-list p { color: rgba(255,255,255,0.8); }

.partner-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 3rem;
}
.partner-logos img {
  height: 40px;
  opacity: 0.4;
  filter: grayscale(100%);
  transition: var(--transition);
}
.partner-logos img:hover { opacity: 1; filter: grayscale(0%); }

/* ========================================
   BLOG
   ======================================== */
.blog-featured {
  display: grid;
  grid-template-columns: 1fr;
  background: var(--white);
  overflow: hidden;
  box-shadow: var(--shadow);
}
@media (min-width: 1024px) { .blog-featured { grid-template-columns: 1fr 1fr; } }

.blog-featured-img { height: 300px; overflow: hidden; }
@media (min-width: 1024px) { .blog-featured-img { height: auto; } }
.blog-featured-img img { width: 100%; height: 100%; object-fit: cover; }

.blog-featured-body { padding: 2rem; display: flex; flex-direction: column; justify-content: center; }
@media (min-width: 768px) { .blog-featured-body { padding: 3rem; } }

.blog-meta { display: flex; gap: 1rem; font-size: 0.8rem; color: var(--gray-500); margin-bottom: 1rem; }

.blog-card { overflow: hidden; background: var(--white); transition: all 0.5s ease; }
.blog-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-xl); }

.blog-card-img { height: 200px; overflow: hidden; position: relative; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s ease; }
.blog-card:hover .blog-card-img img { transform: scale(1.1); }

.blog-card-body { padding: 1.5rem; }
.blog-card-body h3 {
  font-family: 'Noto Serif SC', serif;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  transition: color 0.3s;
}
.blog-card:hover .blog-card-body h3 { color: var(--gold); }
.blog-card-body p { font-size: 0.85rem; color: var(--gray-600); line-height: 1.7; margin-bottom: 1rem; }

.read-more {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--gold);
}
.read-more svg { width: 14px; height: 14px; transition: transform 0.3s; }
.blog-card:hover .read-more svg { transform: translateX(4px); }

/* ========================================
   CONTACT INFO CARDS
   ======================================== */
.contact-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: var(--white);
  padding: 2rem;
  box-shadow: var(--shadow);
  transition: var(--transition);
  height: 100%;
}
.contact-card:hover { box-shadow: var(--shadow-lg); }
.contact-card-icon {
  width: 56px;
  height: 56px;
  background: rgba(184,134,11,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.contact-card-icon svg { width: 24px; height: 24px; stroke: var(--gold); fill: none; }
.contact-card h3 { font-family: 'Noto Serif SC', serif; font-size: 1.1rem; font-weight: 700; margin-bottom: 0.5rem; }
.contact-card a { color: var(--gold); font-size: 0.9rem; transition: var(--transition); }
.contact-card a:hover { color: var(--gold-dark); }
.contact-card .sub { font-size: 0.8rem; color: var(--gray-500); margin-top: 0.25rem; }

/* ========================================
   MAP
   ======================================== */
.map-container { width: 100%; overflow: hidden; background: var(--white); box-shadow: var(--shadow); }
.map-container iframe { width: 100%; height: 350px; border: 0; display: block; }

/* ========================================
   CTA BAND
   ======================================== */
.cta-band { background: var(--gold); padding: 3rem 0; }
.cta-band .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
}
@media (min-width: 768px) {
  .cta-band .container { flex-direction: row; justify-content: space-between; text-align: left; }
}
.cta-band h3 { font-size: 1.3rem; font-weight: 700; color: var(--white); }
.cta-band p { color: rgba(255,255,255,0.8); margin-top: 0.25rem; }

.cta-band .btn-cta-white {
  padding: 0.75rem 1.5rem;
  background: var(--white);
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: 700;
  transition: var(--transition);
}
.cta-band .btn-cta-white:hover { background: var(--cream); }

.cta-band .btn-cta-outline {
  padding: 0.75rem 1.5rem;
  border: 2px solid var(--white);
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 700;
  transition: var(--transition);
  background: transparent;
}
.cta-band .btn-cta-outline:hover { background: var(--white); color: var(--gold); }

/* Big CTA block */
.cta-block {
  background: var(--charcoal);
  padding: 4rem 2rem;
  text-align: center;
}
@media (min-width: 768px) { .cta-block { padding: 5rem 3rem; } }
.cta-block h2 { color: var(--white); }
.cta-block p { color: rgba(255,255,255,0.6); max-width: 640px; margin: 0 auto 2rem; }

/* ========================================
   SERVICE AREA TAGS
   ======================================== */
.area-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}
.area-tag {
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(8px);
  padding: 0.75rem 1.5rem;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
  transition: var(--transition);
}
.area-tag:hover { border-color: var(--gold); color: var(--gold); }

/* Light area tags */
.area-tag-light {
  border: 1px solid rgba(184,134,11,0.2);
  background: rgba(184,134,11,0.05);
  padding: 0.5rem 1rem;
  font-size: 0.8rem;
  color: var(--charcoal);
}

/* ========================================
   SIDEBAR
   ======================================== */
.sidebar-box {
  padding: 2rem;
  margin-bottom: 2rem;
}
.sidebar-dark { background: var(--charcoal); color: var(--white); }
.sidebar-light { background: var(--white); border: 1px solid rgba(184,134,11,0.2); }

.sidebar-box h3 {
  font-family: 'Noto Serif SC', serif;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}
.sidebar-dark h3 { color: var(--gold); }

.sidebar-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}
.sidebar-list svg { width: 20px; height: 20px; flex-shrink: 0; stroke: var(--gold); fill: none; margin-top: 2px; }
.sidebar-list .label { font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.15em; color: rgba(255,255,255,0.5); }
.sidebar-list a { color: var(--white); transition: var(--transition); font-size: 0.9rem; }
.sidebar-list a:hover { color: var(--gold); }
.sidebar-list span.info { color: rgba(255,255,255,0.8); font-size: 0.9rem; }

.promise-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--gray-600);
  padding: 0.35rem 0;
}
.promise-list svg { width: 16px; height: 16px; flex-shrink: 0; stroke: var(--gold); fill: none; }

/* ========================================
   STATS BAR
   ======================================== */
.stats-bar { background: var(--charcoal); padding: 3.5rem 0; }
.stats-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
@media (min-width: 768px) { .stats-grid { grid-template-columns: repeat(4, 1fr); } }
.stat { text-align: center; }
.stat-value {
  font-family: 'Noto Serif SC', serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--gold);
}
.stat-label { font-size: 0.8rem; color: rgba(255,255,255,0.6); margin-top: 0.5rem; }

/* ========================================
   FOOTER
   ======================================== */
footer {
  background: var(--charcoal);
  color: var(--white);
}

.footer-main { padding: 4rem 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1fr; } }

.footer-brand { margin-bottom: 1.5rem; display: flex; align-items: center; gap: 0.75rem; }
.footer-desc { font-size: 0.85rem; color: rgba(255,255,255,0.6); line-height: 1.8; }

.footer-title {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.footer-links li { margin-bottom: 0.75rem; }
.footer-links a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.footer-links a:hover { color: var(--gold); }
.footer-links a svg { width: 12px; height: 12px; opacity: 0; transition: var(--transition); }
.footer-links a:hover svg { opacity: 1; }

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.footer-contact svg { width: 16px; height: 16px; flex-shrink: 0; stroke: var(--gold); fill: none; margin-top: 3px; }
.footer-contact a { font-size: 0.85rem; color: rgba(255,255,255,0.6); transition: var(--transition); }
.footer-contact a:hover { color: var(--gold); }
.footer-contact span { font-size: 0.85rem; color: rgba(255,255,255,0.6); }
.footer-contact .hours { font-size: 0.85rem; color: rgba(255,255,255,0.6); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 1.5rem 0;
}
.footer-bottom .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}
@media (min-width: 768px) {
  .footer-bottom .container { flex-direction: row; justify-content: space-between; }
}
.footer-bottom p { font-size: 0.75rem; color: rgba(255,255,255,0.4); }
.footer-partner { font-size: 0.75rem; color: rgba(255,255,255,0.5); }
.footer-partner a { color: rgba(184,134,11,0.7); transition: var(--transition); }
.footer-partner a:hover { color: var(--gold); }

/* ========================================
   ANIMATIONS
   ======================================== */
@keyframes fadeIn { 0% { opacity: 0; } 100% { opacity: 1; } }
@keyframes fadeUp { 0% { opacity: 0; transform: translateY(30px); } 100% { opacity: 1; transform: translateY(0); } }
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-10px); }
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-50px); transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1); }
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(50px); transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1); }
.reveal-right.visible { opacity: 1; transform: translateX(0); }

/* Parallax section */
.parallax-section {
  position: relative;
  padding: 6rem 0;
}
.parallax-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
@media (max-width: 768px) { .parallax-bg { background-attachment: scroll; } }
.parallax-dark-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26,26,26,0.85);
}

/* ========================================
   SERVICE DETAIL (services page)
   ======================================== */
.service-detail {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  padding: 3rem 0;
  border-bottom: 1px solid var(--gray-200);
}
@media (min-width: 1024px) {
  .service-detail { grid-template-columns: 1fr 1fr; }
  .service-detail:nth-child(even) { direction: rtl; }
  .service-detail:nth-child(even) > * { direction: ltr; }
}
.service-detail:last-child { border-bottom: none; }

.service-detail-img {
  position: relative;
  height: 350px;
  overflow: hidden;
}
.service-detail-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.service-detail-img:hover img { transform: scale(1.05); }
.service-detail-img .badge {
  position: absolute;
  bottom: 0;
  left: 0;
  background: var(--gold);
  padding: 0.75rem 1.5rem;
  font-family: 'Noto Serif SC', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
}

.service-detail-body h2 { margin-bottom: 0.75rem; }
.service-detail-body p { color: var(--gray-600); line-height: 1.8; margin-bottom: 1.5rem; }
.service-detail-body .check-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.4rem 0;
  color: var(--gray-700);
  font-size: 0.9rem;
}
.service-detail-body .check-features svg { width: 20px; height: 20px; stroke: var(--gold); fill: none; flex-shrink: 0; }

/* ========================================
   RESPONSIVE HELPERS
   ======================================== */
.hide-mobile { display: none; }
@media (min-width: 768px) { .hide-mobile { display: block; } }
.show-mobile { display: block; }
@media (min-width: 768px) { .show-mobile { display: none; } }
