/* ========================================
   BOMI包美 - 極簡留白風格
   Celine / Hermès 風格
   大量留白、優雅、寧靜
   ======================================== */

/* ===== CSS 變數 ===== */
:root {
  /* 淺色背景系 */
  --cream: #FDF9F3;
  --cream-dark: #F7F3ED;
  --cream-darker: #EDE8E0;
  
  /* 深色文字 */
  --black: #0F0B08;
  --charcoal: #1A1612;
  --text-primary: #0F0B08;
  --text-secondary: #6B5B4B;
  --text-muted: #8B7B6B;
  
  /* Hermès 橙 - 點綴用 */
  --hermes-orange: #E07040;
  --hermes-orange-light: #F08050;
  --hermes-orange-dark: #C06030;
  
  /* 金銅色 */
  --gold: #B8956B;
  
  /* 邊框 */
  --border-subtle: rgba(15, 11, 8, 0.06);
  --border-light: rgba(15, 11, 8, 0.12);
  
  /* 過渡 */
  --ease: cubic-bezier(0.25, 0.1, 0.25, 1);
}

/* ===== 全局重置 ===== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

::selection {
  background: var(--hermes-orange);
  color: white;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Cormorant Garamond', Georgia, serif;
  background: var(--cream);
  color: var(--text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.sans {
  font-family: 'Inter', -apple-system, sans-serif;
}

/* ===== 動畫 ===== */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ========================================
   導航
   ======================================== */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 28px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--cream);
  transition: all 0.4s var(--ease);
}

.site-nav.scrolled {
  padding: 18px 60px;
  box-shadow: 0 1px 0 var(--border-subtle);
}

.nav-logo {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 28px;
  font-weight: 400;
  letter-spacing: 10px;
  text-transform: uppercase;
  color: var(--text-primary);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-logo-dot {
  width: 5px;
  height: 5px;
  background: var(--hermes-orange);
  border-radius: 50%;
}

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

.nav-menu a {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.3s;
  position: relative;
  padding: 8px 0;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 1px;
  background: var(--hermes-orange);
  transition: all 0.3s var(--ease);
  transform: translateX(-50%);
}

.nav-menu a:hover {
  color: var(--text-primary);
}

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

.nav-menu a.active {
  color: var(--text-primary);
}

.nav-menu a.active::after {
  width: 100%;
}

.nav-cta {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-primary);
  text-decoration: none;
  padding: 12px 28px;
  border: 1px solid var(--border-light);
  transition: all 0.4s var(--ease);
}

.nav-cta:hover {
  border-color: var(--hermes-orange);
  background: var(--hermes-orange);
  color: white;
}


/* 手機導航 */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 10px;
  z-index: 1001;
}

.mobile-menu-toggle span {
  width: 24px;
  height: 1.5px;
  background: var(--text-primary);
  transition: all 0.3s var(--ease);
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(4px, 4px);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(4px, -4px);
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--cream);
  z-index: 999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 28px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s var(--ease);
}

.mobile-menu.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu a {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 32px;
  color: var(--text-primary);
  text-decoration: none;
  transition: color 0.3s;
}

.mobile-menu a:hover {
  color: var(--hermes-orange);
}

/* ========================================
   Hero - 居中極簡
   ======================================== */
.hero-section {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 140px 40px 100px;
  position: relative;
}

.hero-label {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--hermes-orange);
  margin-bottom: 40px;
}

.hero-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(48px, 10vw, 100px);
  font-weight: 300;
  line-height: 1.05;
  margin-bottom: 32px;
  max-width: 900px;
}

.hero-title em {
  font-style: italic;
  color: var(--hermes-orange);
}

.hero-desc {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 300;
  color: var(--text-secondary);
  max-width: 480px;
  line-height: 1.85;
  margin-bottom: 48px;
}

.hero-buttons {
  display: flex;
  gap: 20px;
}

.btn {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 16px 36px;
  transition: all 0.4s var(--ease);
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--hermes-orange);
  color: white;
}

.btn-primary:hover {
  background: var(--hermes-orange-dark);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-light);
}

.btn-outline:hover {
  border-color: var(--text-primary);
}

/* 統計數字 */
.hero-stats {
  display: flex;
  justify-content: center;
  gap: 80px;
  margin-top: 80px;
  padding-top: 48px;
  border-top: 1px solid var(--border-subtle);
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 48px;
  font-weight: 400;
  line-height: 1;
  color: var(--text-primary);
}

.stat-number .unit {
  font-size: 0.6em;
  color: var(--hermes-orange);
}

.stat-label {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 8px;
}

/* ========================================
   品牌區
   ======================================== */
.brands-section {
  padding: 100px 40px;
  background: var(--cream-dark);
}

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

.section-label {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.section-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 400;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.section-line {
  width: 50px;
  height: 1px;
  background: var(--hermes-orange);
  margin: 0 auto;
}

.brands-marquee {
  overflow: hidden;
  position: relative;
}

.brands-marquee::before,
.brands-marquee::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}

.brands-marquee::before {
  left: 0;
  background: linear-gradient(90deg, var(--cream-dark), transparent);
}

.brands-marquee::after {
  right: 0;
  background: linear-gradient(270deg, var(--cream-dark), transparent);
}

.brands-track {
  display: flex;
  gap: 60px;
  animation: marquee 40s linear infinite;
}

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

.brand-item {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-muted);
  white-space: nowrap;
  transition: color 0.3s;
}

.brand-item:hover {
  color: var(--hermes-orange);
}

/* ========================================
   服務區 - 全屏圖文交替
   ======================================== */
.services-section {
  padding: 0;
}

.service-block {
  display: flex;
  min-height: 85vh;
  border-bottom: 1px solid var(--border-subtle);
}

.service-block:nth-child(even) {
  flex-direction: row-reverse;
}

.service-image {
  flex: 1;
  position: relative;
  overflow: hidden;
  background: var(--cream-darker);
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(18%);
  transition: filter 0.6s var(--ease), transform 0.8s var(--ease);
}

.service-block:hover .service-image img {
  filter: grayscale(0%);
  transform: scale(1.03);
}

.service-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px;
  max-width: 600px;
}

.service-number {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 14px;
  font-weight: 400;
  color: var(--text-muted);
  margin-bottom: 28px;
  letter-spacing: 2px;
}

.service-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(36px, 4vw, 48px);
  font-weight: 400;
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}

.service-desc {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.9;
  margin-bottom: 36px;
}

.service-link {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--hermes-orange);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: gap 0.3s var(--ease);
}

.service-link:hover {
  gap: 18px;
}

.service-link::after {
  content: '→';
  font-size: 12px;
}

/* ========================================
   引言區
   ======================================== */
.quote-section {
  padding: 140px 40px;
  background: var(--cream);
  position: relative;
}

.quote-section::before {
  content: '"';
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(180px, 20vw, 300px);
  color: var(--hermes-orange);
  opacity: 0.12;
  position: absolute;
  top: 60px;
  left: 50%;
  transform: translateX(-50%);
  line-height: 0.8;
  pointer-events: none;
}

.quote-content {
  max-width: 750px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}

.quote-text {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 400;
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 36px;
  color: var(--text-primary);
}

.quote-author {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 2px;
}

.quote-author strong {
  color: var(--hermes-orange);
  font-weight: 500;
}

/* 引言區輪播動畫 */
.quote-content {
  transition: opacity 0.8s ease-in-out;
}

.quote-content.fade-out {
  opacity: 0;
}

.quote-content.fade-in {
  opacity: 1;
}

/* 輪播指示點 */
.quote-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}

.quote-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border-light);
  cursor: pointer;
  transition: all 0.3s;
}

.quote-dot:hover {
  background: var(--text-muted);
}

.quote-dot.active {
  background: var(--hermes-orange);
  width: 24px;
  border-radius: 4px;
}


/* ========== 預約網格 ========== */
.booking-section {
  padding: 100px 40px;
  background: var(--cream-dark);
  text-align: center;
}
.booking-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 0 20px;
  margin-top: 40px;
}

.booking-item {
  background: var(--cream);
  border: 2px solid var(--hermes-orange);
  padding: 32px 20px;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  display: block;
}

.booking-item:hover {
  background: linear-gradient(135deg, var(--hermes-orange) 0%, var(--hermes-orange-dark) 100%);
  transform: translateY(-6px);
  box-shadow: 0 8px 30px rgba(224, 112, 64, 0.3);
  border-color: var(--hermes-orange-dark);
}

.booking-item:hover .booking-title,
.booking-item:hover .booking-desc {
  color: #fff;
}

.booking-icon {
  margin-bottom: 14px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.booking-icon svg {
  width: 48px;
  height: 48px;
  stroke: var(--hermes-orange);
  stroke-width: 1.5;
  fill: none;
  transition: all 0.3s ease;
}

.booking-item:hover .booking-icon svg {
  stroke: #fff;
}

.booking-ttl {
  font-size: 18px;
  font-weight: 700;
  color: var(--hermes-orange);
  margin-bottom: 6px;
  transition: color 0.3s;
}

.booking-desc {
  font-size: 13px;
  color: var(--text-muted);
  transition: color 0.3s;
}

.booking-info {
  text-align: center;
  color: var(--text-muted);
  font-size: 14px;
  margin-top: 32px;
  line-height: 1.8;
}

.booking-info div {
  margin: 4px 0;
}
/* ========================================
   預約區 - 子頁面樣式
   ======================================== */
.booking-section {
  padding: 100px 40px;
  background: var(--cream-dark);
  text-align: center;
}

.booking-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 400;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
  color: var(--text-primary);
}

.booking-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 48px;
}

.booking-phone {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(40px, 6vw, 64px);
  font-weight: 400;
  color: var(--hermes-orange);
  margin-bottom: 48px;
  letter-spacing: 4px;
}

.booking-methods {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.booking-method {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 32px;
  background: var(--cream);
  border: 1px solid var(--border-subtle);
  text-decoration: none;
  transition: all 0.3s var(--ease);
}

.booking-method:hover {
  border-color: var(--hermes-orange);
  transform: translateY(-2px);
  background: var(--hermes-orange);
}

.booking-method:hover .booking-method-text {
  color: #fff;
}

.booking-method-icon {
  font-size: 18px;
  font-weight: 300;
  color: var(--hermes-orange);
}

.booking-method:hover .booking-method-icon {
  color: #fff;
}

.booking-method-text {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  letter-spacing: 1px;
  color: var(--text-primary);
  text-transform: uppercase;
}

/* ========================================
   Footer
   ======================================== */
.site-footer {
  padding: 50px 60px;
  border-top: 1px solid var(--border-subtle);
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--cream);
}

.footer-left {
  display: flex;
  align-items: center;
  gap: 36px;
}

.footer-logo {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 18px;
  letter-spacing: 6px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 4px;
}

.footer-logo-dot {
  width: 4px;
  height: 4px;
  background: var(--hermes-orange);
  border-radius: 50%;
}

.footer-info {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  color: var(--text-muted);
}

.footer-right {
  display: flex;
  gap: 28px;
}

.footer-link {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-link:hover {
  color: var(--hermes-orange);
}

/* ========================================
   手機適配
   ======================================== */
@media (max-width: 1024px) {
  .site-nav {
    padding: 20px 24px;
  }
  
  .nav-menu {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .nav-cta {
    display: none;
  }
  
  /* Hero */
  .hero-section {
    padding: 120px 24px 80px;
  }
  
  .hero-stats {
    flex-direction: column;
    gap: 32px;
  }
  
  /* 服務區 */
  .service-block {
    flex-direction: column !important;
    min-height: auto;
  }
  
  .service-image {
    height: 45vh;
    min-height: 300px;
  }
  
  .service-content {
    padding: 50px 24px;
  }
  
  /* 其他 */
  .brands-section,
  .quote-section,
  .booking-section {
    padding: 80px 24px;
	
  }
    
  .booking-methods {
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.booking-method {
  width: 100%;
  max-width: 300px;
  justify-content: center;
}

  
  /* 預約網格 - 平板 */
  .booking-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    padding: 0;
  }
  
  .booking-item {
    padding: 24px 16px;
  }
  
  /* Footer */
  .site-footer {
    flex-direction: column;
    text-align: center;
    padding: 40px 24px;
    gap: 24px;
  }
  
  .footer-left {
    flex-direction: column;
    gap: 16px;
  }
  
  .footer-right {
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 40px;
  }
  
  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .btn {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
  
  .service-title {
    font-size: 30px;
  }
  
  .booking-phone {
    font-size: 36px;
    letter-spacing: 2px;
  }
  
  /* 預約網格 - 手機 */
  .booking-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  
  .booking-item {
    padding: 20px 16px;
  }
  
  .booking-icon svg {
    width: 40px;
    height: 40px;
  }
  
  .booking-ttl {
    font-size: 16px;
  }
  
   .booking-title {
    font-size: 30px;
  }
  
  .booking-desc {
    font-size: 12px;
  }
}
