/* =============================================
   至简美学 - 品牌官网样式
   色彩体系：金棕色 + 暖白 + 深灰，传递高级美学质感
   ============================================= */

:root {
  --gold: #c9a96e;
  --gold-light: #dfc99e;
  --gold-dark: #a8854a;
  --cream: #faf8f5;
  --cream-dark: #f0ece5;
  --charcoal: #2c2c2c;
  --charcoal-light: #4a4a4a;
  --gray: #888;
  --white: #ffffff;
  --section-padding: 100px 0;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Noto Sans SC', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}

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

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

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

/* ===================== 顶部信息栏 ===================== */

.top-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1001;
  background: rgba(26, 26, 26, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(201, 169, 110, 0.15);
  transition: all 0.4s ease;
}

.top-bar.hidden {
  transform: translateY(-100%);
  opacity: 0;
}

.top-bar-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 8px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.top-bar-left,
.top-bar-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

#topBarPhones {
  display: flex;
  align-items: center;
  gap: 20px;
}

.top-bar-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.top-bar-item svg {
  color: var(--gold);
  flex-shrink: 0;
}

.top-bar-badge {
  display: inline-flex;
  align-items: center;
  padding: 2px 12px;
  background: var(--gold);
  color: #1a1a1a;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 2px;
  border-radius: 3px;
  margin-right: 4px;
}

a.top-bar-item:hover {
  color: var(--gold-light);
}

/* ===================== 导航栏 ===================== */

.navbar {
  position: fixed;
  top: 37px;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: all 0.4s ease;
}

.navbar.scrolled {
  top: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  padding: 12px 0;
  box-shadow: 0 2px 30px rgba(0, 0, 0, 0.06);
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Noto Serif SC', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 4px;
  transition: var(--transition);
}

.nav-logo-icon {
  width: 28px;
  height: 28px;
  color: var(--gold);
}

.navbar.scrolled .nav-logo {
  color: var(--charcoal);
}

.navbar.scrolled .nav-logo-icon {
  color: var(--gold-dark);
}

.nav-menu {
  list-style: none;
  display: flex;
  gap: 40px;
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 1px;
  position: relative;
  padding: 4px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--gold);
  transition: width 0.3s ease;
}

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

.nav-link:hover {
  color: var(--white);
}

.navbar.scrolled .nav-link {
  color: var(--charcoal-light);
}

.navbar.scrolled .nav-link:hover {
  color: var(--gold-dark);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
}

.navbar.scrolled .nav-toggle span {
  background: var(--charcoal);
}

/* ===================== Hero 首屏 ===================== */

.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    linear-gradient(135deg, #1a1a2e 0%, #16213e 30%, #0f3460 60%, #1a1a2e 100%);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(201, 169, 110, 0.15) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(201, 169, 110, 0.1) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 80%, rgba(201, 169, 110, 0.08) 0%, transparent 50%);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="p" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="0.5" fill="rgba(201,169,110,0.08)"/></pattern></defs><rect fill="url(%23p)" width="100" height="100"/></svg>');
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.hero-title {
  font-family: 'Noto Serif SC', serif;
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  letter-spacing: 20px;
  margin-bottom: 24px;
}

.title-line {
  display: block;
}

/* Logo */
.hero-logo {
  width: 100px;
  height: 100px;
  margin: 0 auto 28px;
  animation: logoFloat 6s ease-in-out infinite;
}

.hero-logo svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 0 20px rgba(201, 169, 110, 0.3));
}

@keyframes logoFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--gold-light);
  font-weight: 300;
  letter-spacing: 8px;
  margin-bottom: 36px;
}

/* 预约制 独立标识 */
.hero-appointment {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 32px;
}

.appointment-line {
  display: block;
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}

.appointment-line:last-child {
  background: linear-gradient(90deg, var(--gold), transparent);
}

.appointment-text {
  font-family: 'Noto Serif SC', serif;
  font-size: 1.1rem;
  color: var(--gold);
  letter-spacing: 10px;
  padding: 8px 24px;
  border: 1px solid var(--gold);
  position: relative;
  animation: appointmentGlow 3s ease-in-out infinite;
}

.appointment-text::before,
.appointment-text::after {
  content: '';
  position: absolute;
  width: 8px;
  height: 8px;
  border: 1px solid var(--gold);
  transform: rotate(45deg);
}

.appointment-text::before {
  top: -5px;
  left: -5px;
  border-right: none;
  border-bottom: none;
}

.appointment-text::after {
  bottom: -5px;
  right: -5px;
  border-left: none;
  border-top: none;
}

@keyframes appointmentGlow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(201, 169, 110, 0.2), inset 0 0 0 0 rgba(201, 169, 110, 0); }
  50% { box-shadow: 0 0 30px 2px rgba(201, 169, 110, 0.15), inset 0 0 20px rgba(201, 169, 110, 0.05); }
}

/* 联系信息条 */
.hero-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 40px;
}

.hero-info-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  letter-spacing: 1px;
}

.hero-info-item svg {
  color: var(--gold);
  flex-shrink: 0;
}

a.hero-info-item:hover {
  color: var(--gold-light);
}

.hero-info-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.5;
}

.hero-btn {
  display: inline-block;
  padding: 14px 48px;
  border: 1.5px solid var(--gold);
  color: var(--gold);
  font-size: 0.9rem;
  letter-spacing: 4px;
  transition: all 0.4s ease;
}

.hero-btn:hover {
  background: var(--gold);
  color: var(--charcoal);
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.75rem;
  letter-spacing: 2px;
}

.scroll-arrow {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold-light), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ===================== 通用板块 ===================== */

.section {
  padding: var(--section-padding);
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 4px;
  color: var(--gold);
  margin-bottom: 16px;
  font-weight: 500;
}

.section-title {
  font-family: 'Noto Serif SC', serif;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 600;
  color: var(--charcoal);
  letter-spacing: 6px;
}

.section-divider {
  width: 48px;
  height: 1.5px;
  background: var(--gold);
  margin: 20px auto;
}

.section-desc {
  font-size: 1rem;
  color: var(--gray);
  font-weight: 300;
  letter-spacing: 1px;
  margin-top: 8px;
}

/* ===================== 关于我们 ===================== */

.about {
  background: var(--cream);
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-text p {
  color: var(--charcoal-light);
  margin-bottom: 20px;
  font-weight: 300;
  line-height: 2;
}

.about-lead {
  font-size: 1.15rem;
  color: var(--charcoal) !important;
  font-weight: 400 !important;
  line-height: 1.9 !important;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.stat-item {
  text-align: center;
  padding: 32px 16px;
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.stat-number {
  font-family: 'Noto Serif SC', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.stat-suffix {
  font-size: 1rem;
  color: var(--gold);
  font-weight: 500;
}

.stat-label {
  display: block;
  margin-top: 8px;
  font-size: 0.85rem;
  color: var(--gray);
  letter-spacing: 1px;
}

/* ===================== 服务项目 ===================== */

.services {
  background: var(--white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.service-card {
  padding: 48px 32px;
  background: var(--cream);
  border-radius: 16px;
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  background: var(--white);
}

.service-card:hover::before {
  opacity: 1;
}

.service-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 24px;
  color: var(--gold);
}

.service-icon svg {
  width: 100%;
  height: 100%;
}

.service-title {
  font-family: 'Noto Serif SC', serif;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.service-desc {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.8;
  font-weight: 300;
}

/* ===================== 作品展示 ===================== */

.gallery {
  background: var(--cream);
}

.gallery-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 48px;
}

.gallery-filter {
  padding: 8px 24px;
  border: 1px solid var(--cream-dark);
  background: var(--white);
  color: var(--charcoal-light);
  font-size: 0.85rem;
  letter-spacing: 1px;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: inherit;
}

.gallery-filter:hover {
  border-color: var(--gold);
  color: var(--gold-dark);
}

.gallery-filter.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.gallery-item {
  border-radius: 12px;
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  cursor: pointer;
  transition: all 0.4s ease;
}

.gallery-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.1);
}

.gallery-img-wrap {
  position: relative;
  padding-top: 75%;
  overflow: hidden;
  background: var(--cream-dark);
}

.gallery-img-wrap img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

.gallery-img-wrap.img-error {
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-img-wrap.img-error::after {
  content: '暂无图片';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray);
  font-size: 0.85rem;
  letter-spacing: 2px;
  background: var(--cream-dark);
}

.gallery-img-wrap.img-error img {
  display: none;
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(44, 44, 44, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-zoom {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-dark);
  transform: scale(0.8);
  transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-zoom {
  transform: scale(1);
}

.gallery-caption {
  padding: 16px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.gallery-caption-title {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--charcoal);
  letter-spacing: 1px;
}

.gallery-caption-cat {
  font-size: 0.75rem;
  color: var(--gold-dark);
  background: rgba(201, 169, 110, 0.1);
  padding: 3px 10px;
  border-radius: 12px;
  letter-spacing: 1px;
}

/* 灯箱 */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0, 0, 0, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-content {
  max-width: 80vw;
  max-height: 85vh;
  text-align: center;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 75vh;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  object-fit: contain;
  margin: 0 auto;
}

.lightbox-title {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  margin-top: 16px;
  letter-spacing: 2px;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  transition: color 0.3s ease;
  padding: 8px;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  color: var(--gold);
}

.lightbox-close {
  top: 24px;
  right: 32px;
  font-size: 2.5rem;
  line-height: 1;
}

.lightbox-prev {
  left: 24px;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-next {
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
}

/* ===================== 品牌理念 ===================== */

.philosophy {
  background: var(--charcoal);
  color: var(--white);
}

.section-header.light .section-title {
  color: var(--white);
}

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

.philosophy-item {
  padding: 40px 24px;
  border: 1px solid rgba(201, 169, 110, 0.15);
  border-radius: 12px;
  text-align: center;
  transition: all 0.4s ease;
}

.philosophy-item:hover {
  border-color: var(--gold);
  background: rgba(201, 169, 110, 0.05);
}

.philosophy-number {
  font-family: 'Noto Serif SC', serif;
  font-size: 2rem;
  color: var(--gold);
  opacity: 0.4;
  margin-bottom: 16px;
  font-weight: 600;
}

.philosophy-item h3 {
  font-family: 'Noto Serif SC', serif;
  font-size: 1.4rem;
  letter-spacing: 4px;
  margin-bottom: 16px;
  color: var(--gold-light);
}

.philosophy-item p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.8;
  font-weight: 300;
}

/* ===================== 联系我们 ===================== */

.contact {
  background: var(--cream);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

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

.contact-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border-radius: 12px;
  color: var(--gold);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.contact-icon svg {
  width: 22px;
  height: 22px;
}

.contact-text h4 {
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 4px;
  letter-spacing: 1px;
}

.contact-text p {
  font-size: 0.9rem;
  color: var(--gray);
  font-weight: 300;
  line-height: 1.6;
}

.contact-text a:hover {
  color: var(--gold-dark);
}

.contact-qrcode {
  display: flex;
  justify-content: center;
}

.qrcode-wrapper {
  text-align: center;
  padding: 40px;
  background: var(--white);
  border-radius: 20px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.04);
}

.qrcode-placeholder {
  width: 200px;
  height: 200px;
  margin: 0 auto 20px;
}

.qrcode-placeholder svg {
  width: 100%;
  height: 100%;
}

.qrcode-img {
  width: 200px;
  height: 200px;
  margin: 0 auto 20px;
  border-radius: 8px;
}

.qrcode-label {
  font-size: 1rem;
  font-weight: 500;
  color: var(--charcoal);
  letter-spacing: 2px;
  margin-bottom: 4px;
}

.qrcode-sublabel {
  font-size: 0.8rem;
  color: var(--gray);
  letter-spacing: 1px;
}

/* ===================== 页脚 ===================== */

.footer {
  background: #1a1a1a;
  color: rgba(255, 255, 255, 0.6);
  padding: 60px 0 30px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand h3 {
  font-family: 'Noto Serif SC', serif;
  font-size: 1.5rem;
  color: var(--white);
  letter-spacing: 4px;
  margin-bottom: 8px;
}

.footer-brand p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 2px;
}

.footer-links {
  display: flex;
  gap: 32px;
}

.footer-links a {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 1px;
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-bottom {
  padding-top: 24px;
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.3);
  letter-spacing: 1px;
}

/* ===================== 动画 ===================== */

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

/* ===================== 响应式 ===================== */

@media (max-width: 1024px) {
  .philosophy-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 72px 0;
  }

  .top-bar-container {
    flex-direction: column;
    gap: 4px;
    padding: 6px 16px;
  }

  .top-bar-left,
  .top-bar-right {
    gap: 16px;
  }

  .top-bar-item {
    font-size: 0.72rem;
  }

  .navbar {
    top: 52px;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 32px;
    transition: right 0.4s ease;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.1);
  }

  .nav-menu.active {
    right: 0;
  }

  .nav-menu .nav-link {
    color: var(--charcoal);
    font-size: 1.1rem;
    letter-spacing: 4px;
  }

  .nav-menu .nav-link:hover {
    color: var(--gold-dark);
  }

  .hero-title {
    letter-spacing: 12px;
  }

  .hero-subtitle {
    letter-spacing: 4px;
    font-size: 0.95rem;
  }

  .hero-logo {
    width: 72px;
    height: 72px;
    margin-bottom: 20px;
  }

  .hero-info {
    flex-direction: column;
    gap: 10px;
  }

  .hero-info-dot {
    display: none;
  }

  .hero-info-item {
    font-size: 0.8rem;
  }

  .appointment-line {
    width: 36px;
  }

  .appointment-text {
    font-size: 0.9rem;
    letter-spacing: 6px;
    padding: 6px 16px;
  }

  .about-content {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .service-card {
    padding: 36px 24px;
  }

  .philosophy-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

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

  .gallery-filter {
    padding: 6px 16px;
    font-size: 0.78rem;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

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

  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    letter-spacing: 8px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .about-stats {
    grid-template-columns: 1fr;
  }

  .stat-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px 24px;
  }

  .stat-label {
    margin-top: 0;
  }

  .section-header {
    margin-bottom: 48px;
  }
}
