/* ============================================
   FepPhoto 遠東照相館 - Main Stylesheet
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+TC:wght@300;400;500;600;700&family=Noto+Sans+TC:wght@300;400;500;700&display=swap');

/* === CSS Variables === */
:root {
  --gold: #c9a84c;
  --gold-light: #e8c96e;
  --gold-dark: #9a7a30;
  --cream: #fdf8f0;
  --dark: #1a1209;
  --dark-2: #2d2010;
  --dark-3: #3f2f18;
  --text-main: #2a1f0e;
  --text-light: #6b5d4f;
  --text-muted: #9e8e7a;
  --white: #ffffff;
  --section-bg: #fdf8f0;
  --card-bg: #fff;
  --border: rgba(201,168,76,0.25);
  --shadow: 0 4px 32px rgba(26,18,9,0.10);
  --shadow-hover: 0 12px 48px rgba(26,18,9,0.18);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --nav-h: 70px;
}

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

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

body {
  font-family: 'Noto Sans TC', sans-serif;
  color: var(--text-main);
  background: var(--cream);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* === Typography === */
h1, h2, h3, h4 {
  font-family: 'Noto Serif TC', serif;
  line-height: 1.3;
}

.section-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--dark);
  margin-bottom: 1rem;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 560px;
  margin: 0 auto 2.5rem;
}

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

/* === Gold Divider === */
.gold-divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
  margin: 0.8rem auto 1.5rem;
  border-radius: 2px;
}

/* === Buttons === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.8rem;
  border-radius: 50px;
  font-family: 'Noto Sans TC', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  box-shadow: 0 4px 20px rgba(201,168,76,0.4);
}
.btn-gold:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  box-shadow: 0 6px 28px rgba(201,168,76,0.55);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-white {
  background: var(--white);
  color: var(--dark);
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.btn-white:hover {
  box-shadow: 0 6px 28px rgba(0,0,0,0.22);
  transform: translateY(-2px);
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 1000;
  transition: var(--transition);
  padding: 0 2rem;
}

.navbar.scrolled {
  background: rgba(26, 18, 9, 0.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.nav-logo img {
  height: 48px;
  width: 48px;
  object-fit: contain;
  border-radius: 50%;
  border: 2px solid var(--gold);
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
}

.nav-logo-en {
  font-family: 'Noto Serif TC', serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--gold-light);
  letter-spacing: 0.05em;
}
.nav-logo-zh {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.1em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.2rem;
}

.nav-links a {
  padding: 0.5rem 1rem;
  border-radius: 6px;
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  font-weight: 500;
  transition: var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 50%; right: 50%;
  height: 2px;
  background: var(--gold);
  transition: var(--transition);
  border-radius: 2px;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--gold-light);
}
.nav-links a:hover::after, .nav-links a.active::after {
  left: 1rem; right: 1rem;
}

.nav-cta {
  padding: 0.5rem 1.2rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 50px;
  color: var(--white) !important;
  font-weight: 700 !important;
}
.nav-cta::after { display: none; }
.nav-cta:hover {
  color: var(--white) !important;
  box-shadow: 0 4px 16px rgba(201,168,76,0.5);
  transform: translateY(-1px);
}

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

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--dark);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../assets/images/店面圖.webp');
  background-size: cover;
  background-position: center;
  opacity: 0.35;
  transform: scale(1.05);
  animation: heroZoom 12s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  from { transform: scale(1.05); }
  to { transform: scale(1.12); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(26,18,9,0.85) 0%,
    rgba(26,18,9,0.6) 50%,
    rgba(26,18,9,0.75) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  padding-top: var(--nav-h);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.4);
  color: var(--gold-light);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
  animation: fadeInDown 0.8s ease forwards;
}

.hero h1 {
  font-size: clamp(2.2rem, 6vw, 4.2rem);
  color: var(--white);
  margin-bottom: 0.5rem;
  animation: fadeInUp 0.9s ease 0.1s both;
}

.hero h1 span {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.35rem);
  color: rgba(255,255,255,0.75);
  font-weight: 300;
  margin-bottom: 2rem;
  animation: fadeInUp 0.9s ease 0.2s both;
}

.hero-desc {
  font-size: 1rem;
  color: rgba(255,255,255,0.6);
  max-width: 520px;
  margin-bottom: 2.5rem;
  animation: fadeInUp 0.9s ease 0.3s both;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeInUp 0.9s ease 0.4s both;
}

.hero-stats {
  display: flex;
  gap: 3rem;
  margin-top: 4rem;
  animation: fadeInUp 0.9s ease 0.5s both;
  flex-wrap: wrap;
}

.hero-stat-num {
  font-family: 'Noto Serif TC', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold-light);
  display: block;
  line-height: 1;
}
.hero-stat-label {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.05em;
  margin-top: 0.3rem;
}

/* Scroll hint */
.scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255,255,255,0.45);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  animation: bounce 2s infinite;
  z-index: 2;
}
.scroll-hint::after {
  content: '';
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(201,168,76,0.6), transparent);
}

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

/* ============================================
   ABOUT SECTION
   ============================================ */
.about {
  padding: 100px 2rem;
  background: var(--cream);
}

.about-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-images {
  position: relative;
}

.about-img-main {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-hover);
}

.about-img-float {
  position: absolute;
  bottom: -40px;
  right: -30px;
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: var(--radius);
  border: 5px solid var(--cream);
  box-shadow: var(--shadow-hover);
}

.about-badge {
  position: absolute;
  top: -20px;
  left: -20px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  padding: 1rem 1.5rem;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: 0 8px 32px rgba(201,168,76,0.45);
}
.about-badge-num {
  font-family: 'Noto Serif TC', serif;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
  display: block;
}
.about-badge-text {
  font-size: 0.75rem;
  opacity: 0.9;
  letter-spacing: 0.1em;
}

.about-content h2 { margin-bottom: 1.2rem; }

.about-text {
  color: var(--text-light);
  line-height: 1.9;
  margin-bottom: 1.2rem;
}

.about-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 2rem 0;
}

.about-value-item {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  padding: 1rem;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: var(--transition);
}
.about-value-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
  border-color: var(--gold);
}

.about-value-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.about-value-title {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--dark);
  margin-bottom: 0.2rem;
}
.about-value-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services {
  padding: 100px 2rem;
  background: var(--dark);
  position: relative;
  overflow: hidden;
}

.services::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../assets/images/攝影棚以及器具.webp');
  background-size: cover;
  background-position: center;
  opacity: 0.06;
}

.services-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.services .section-title { color: var(--white); }
.services .section-desc { color: rgba(255,255,255,0.55); }
.services .gold-divider { margin: 0.8rem auto 1.5rem; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.service-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
  transform: scaleX(0);
  transition: var(--transition);
}
.service-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(201,168,76,0.45);
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, rgba(201,168,76,0.2), rgba(201,168,76,0.1));
  border: 1px solid rgba(201,168,76,0.35);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.2rem;
  transition: var(--transition);
}
.service-card:hover .service-icon {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-color: transparent;
}

.service-name {
  font-family: 'Noto Serif TC', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.service-desc {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
}

/* ============================================
   GALLERY SECTION
   ============================================ */
.gallery {
  padding: 100px 2rem;
  background: var(--cream);
}

.gallery-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: 1rem;
  margin-top: 3rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.07); }

.gallery-item.large {
  grid-column: span 2;
  grid-row: span 2;
}
.gallery-item .gallery-info {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,18,9,0.85) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 1.2rem;
  opacity: 0;
  transition: var(--transition);
}
.gallery-item:hover .gallery-info { opacity: 1; }
.gallery-info-text {
  color: white;
  font-size: 0.9rem;
  font-weight: 700;
}

/* ============================================
   WHY US / FEATURES
   ============================================ */
.features {
  padding: 100px 2rem;
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 100%);
}

.features-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.features .section-title { color: var(--white); }
.features .section-desc { color: rgba(255,255,255,0.55); }

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.feature-item {
  text-align: center;
  padding: 2.5rem 1.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(201,168,76,0.15);
  background: rgba(255,255,255,0.03);
  transition: var(--transition);
}
.feature-item:hover {
  border-color: rgba(201,168,76,0.4);
  background: rgba(255,255,255,0.06);
  transform: translateY(-4px);
}

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
}
.feature-title {
  font-family: 'Noto Serif TC', serif;
  font-size: 1.15rem;
  color: var(--gold-light);
  margin-bottom: 0.7rem;
}
.feature-desc {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.75;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact {
  padding: 100px 2rem;
  background: var(--cream);
}

.contact-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 4rem;
  align-items: start;
}

.contact-info-card {
  background: var(--dark);
  border-radius: var(--radius-lg);
  padding: 3rem;
  color: var(--white);
  position: sticky;
  top: calc(var(--nav-h) + 1rem);
}

.contact-info-card h3 {
  font-size: 1.6rem;
  color: var(--gold-light);
  margin-bottom: 0.5rem;
}
.contact-info-card p {
  color: rgba(255,255,255,0.55);
  font-size: 0.9rem;
  margin-bottom: 2rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.2rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.contact-item:last-of-type { border: none; }

.contact-item-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-item-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.08em;
  margin-bottom: 0.2rem;
}
.contact-item-value {
  font-size: 0.95rem;
  color: var(--white);
  font-weight: 500;
}
.contact-item-value a {
  color: var(--gold-light);
  transition: var(--transition);
}
.contact-item-value a:hover { color: var(--gold); }

.social-links {
  display: flex;
  gap: 0.8rem;
  margin-top: 2rem;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.2rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  transition: var(--transition);
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--white);
}
.social-btn:hover { transform: translateY(-2px); }
.social-btn.fb { background: rgba(24,119,242,0.2); border-color: rgba(24,119,242,0.4); }
.social-btn.fb:hover { background: #1877f2; }
.social-btn.line { background: rgba(0,199,95,0.2); border-color: rgba(0,199,95,0.4); }
.social-btn.line:hover { background: #00c75f; }

.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-hover);
  border: 3px solid var(--border);
  height: 380px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.hours-grid {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.hours-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
}
.hours-day { color: rgba(255,255,255,0.6); }
.hours-time { color: var(--gold-light); font-weight: 500; }
.hours-special { color: rgba(255,255,255,0.4); font-size: 0.8rem; }

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.5);
  padding: 3rem 2rem 1.5rem;
  border-top: 1px solid rgba(201,168,76,0.15);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.footer-brand-logo {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1rem;
}
.footer-brand-logo img {
  height: 44px;
  width: 44px;
  object-fit: contain;
  border-radius: 50%;
  border: 2px solid var(--gold-dark);
}
.footer-brand-name {
  font-family: 'Noto Serif TC', serif;
  font-size: 1.1rem;
  color: var(--gold-light);
}

.footer-desc {
  font-size: 0.85rem;
  line-height: 1.8;
  max-width: 280px;
}

.footer-col h4 {
  font-family: 'Noto Serif TC', serif;
  font-size: 0.95rem;
  color: var(--gold-light);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(201,168,76,0.2);
}
.footer-col ul li {
  margin-bottom: 0.5rem;
}
.footer-col ul li a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  transition: var(--transition);
}
.footer-col ul li a:hover { color: var(--gold-light); padding-left: 4px; }

.footer-bottom {
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.8rem;
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .about-inner { grid-template-columns: 1fr; gap: 3rem; }
  .about-images { order: -1; }
  .about-img-float { width: 150px; height: 150px; right: 0; }
  .about-badge { top: -15px; left: 0; }
  .contact-inner { grid-template-columns: 1fr; }
  .contact-info-card { position: static; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }

  .nav-links.mobile-open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    background: rgba(26,18,9,0.98);
    backdrop-filter: blur(12px);
    padding: 1.5rem 2rem;
    border-top: 1px solid rgba(201,168,76,0.2);
    gap: 0;
  }
  .nav-links.mobile-open a {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    border-radius: 0;
  }
  .nav-links.mobile-open a::after { display: none; }

  .hero h1 { font-size: clamp(1.8rem, 8vw, 2.8rem); }
  .hero-stats { gap: 2rem; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item.large { grid-column: span 2; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .about-values { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item.large { grid-column: span 1; }
  .features-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .about-img-float { display: none; }
}

/* ============================================
   PAGE HERO (for sub-pages)
   ============================================ */
.page-hero {
  padding: 140px 2rem 80px;
  background: var(--dark);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(201,168,76,0.08) 0%, transparent 70%);
}
.page-hero-title {
  font-family: 'Noto Serif TC', serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  color: var(--white);
  margin-bottom: 0.8rem;
  position: relative;
}
.page-hero-title span {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.page-hero-subtitle {
  color: rgba(255,255,255,0.55);
  font-size: 1.05rem;
  max-width: 500px;
  margin: 0 auto;
  position: relative;
}

/* ============================================
   PRODUCTS PAGE
   ============================================ */
.products-section {
  padding: 80px 2rem;
  background: var(--cream);
}
.products-inner { max-width: 1200px; margin: 0 auto; }

.category-tabs {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
  justify-content: center;
}
.tab-btn {
  padding: 0.55rem 1.4rem;
  border-radius: 50px;
  border: 1.5px solid var(--border);
  background: transparent;
  color: var(--text-light);
  font-family: 'Noto Sans TC', sans-serif;
  font-size: 0.88rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
}
.tab-btn:hover, .tab-btn.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.8rem;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: var(--transition);
  box-shadow: 0 2px 16px rgba(26,18,9,0.06);
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: var(--gold);
}

.product-img {
  height: 250px;
  overflow: hidden;
}
.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.product-card:hover .product-img img { transform: scale(1.06); }

.product-info {
  padding: 1.5rem;
}
.product-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 0.2rem 0.7rem;
  background: rgba(201,168,76,0.12);
  color: var(--gold-dark);
  border-radius: 50px;
  margin-bottom: 0.6rem;
}
.product-name {
  font-family: 'Noto Serif TC', serif;
  font-size: 1.1rem;
  color: var(--dark);
  margin-bottom: 0.4rem;
}
.product-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ============================================
   SERVICES PAGE
   ============================================ */
.services-page {
  padding: 80px 2rem;
  background: var(--cream);
}
.services-page-inner { max-width: 1200px; margin: 0 auto; }

.service-section {
  margin-bottom: 5rem;
}
.service-section-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}
.service-section-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}
.service-section-title {
  font-family: 'Noto Serif TC', serif;
  font-size: 1.4rem;
  color: var(--dark);
}
.service-section-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-top: 0.2rem;
}

.service-items-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1rem;
}
.service-item-card {
  padding: 1.5rem;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: var(--transition);
}
.service-item-card:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.service-item-icon { font-size: 1.8rem; margin-bottom: 0.7rem; }
.service-item-name {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--dark);
  margin-bottom: 0.3rem;
}
.service-item-note {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* CTA Banner */
.cta-banner {
  padding: 80px 2rem;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light));
  text-align: center;
}
.cta-banner h2 {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  color: var(--dark);
  margin-bottom: 0.7rem;
}
.cta-banner p {
  color: rgba(26,18,9,0.7);
  margin-bottom: 2rem;
  font-size: 1.05rem;
}
.cta-banner .btn-white {
  color: var(--gold-dark);
  font-weight: 900;
}
