/* ═══════════════════════════════════════════════════
   SECTIONS — manifesto / texture-dual / portfolio /
   brands-scroll / pathways / trust / blog / footer
   前衛東方官網
   ═══════════════════════════════════════════════════ */

/* ── Shared utilities ── */
.section-title {
  font-family: 'Noto Serif TC', serif;
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  font-weight: 400;
  color: var(--ink);
  letter-spacing: 0.08em;
  margin: 0 0 12px;
}

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

.section-subtitle {
  font-family: 'Noto Sans TC', sans-serif;
  font-size: 0.9rem;
  color: var(--mute);
  letter-spacing: 0.06em;
  margin: 0 0 48px;
}

.section-subtitle--light {
  color: rgba(247, 245, 241, 0.65);
}

.section-header {
  text-align: center;
  padding: 80px 8% 0;
}

.section-cta {
  text-align: center;
  padding: 48px 0 80px;
}

.btn-outline {
  display: inline-block;
  font-family: 'Noto Sans TC', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-decoration: none;
  color: var(--ink);
  border: 1.5px solid var(--ink);
  padding: 12px 36px;
  border-radius: var(--radius-sm);
  transition:
    background var(--duration-fast) var(--ease-out),
    color var(--duration-fast) var(--ease-out),
    transform var(--duration-fast) var(--ease-out);
}

.btn-outline:hover {
  background: var(--ink);
  color: var(--bg);
  transform: translateY(-2px);
}


/* ══════════════════════════════════════════
   MANIFESTO — 自然 wrap，不硬斷句
══════════════════════════════════════════ */
.manifesto {
  background: var(--bg);
  padding: 120px 8%;
  display: flex;
  justify-content: center;
}

.manifesto-inner {
  max-width: 780px;
  width: 100%;
  text-align: center;
}

.manifesto-text {
  font-family: 'Noto Serif TC', 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.05rem, 1.6vw, 1.35rem);
  font-weight: 300;
  color: var(--ink);
  line-height: 2;
  letter-spacing: 0.08em;
  margin: 0 0 56px;
  text-align: center;
  /* 讓瀏覽器自己 wrap，保留東亞斷字美感 */
  word-break: keep-all;
  overflow-wrap: break-word;
  line-break: strict;
}

/* ── Four values ── */
.manifesto-values {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.manifesto-value-item {
  display: inline-flex;
  align-items: center;
}

.value-zh {
  font-family: 'Noto Serif TC', serif;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  color: var(--ink);
  padding: 0 16px;
}

.value-dot {
  font-size: 1.2rem;
  color: var(--accent);
  line-height: 1;
}


/* ══════════════════════════════════════════
   TEXTURE DUAL — 基礎/創作 雙軌
══════════════════════════════════════════ */
.texture-grid {
  background: var(--dark);
  padding: 80px 0 100px;
}

.texture-grid-header {
  text-align: center;
  padding: 0 8% 48px;
}

.texture-grid-header .section-title {
  color: var(--bg);
}

.texture-grid-header .section-subtitle {
  color: rgba(247, 245, 241, 0.55);
  margin-bottom: 0;
}

.texture-dual {
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 0 8%;
}

.dual-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  max-width: 640px;
  margin: 0 auto 40px;
  border: 1px solid rgba(200, 191, 176, 0.22);
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: rgba(247, 245, 241, 0.04);
}

.dual-tab {
  appearance: none;
  background: transparent;
  border: 0;
  padding: 18px 16px;
  cursor: pointer;
  color: rgba(247, 245, 241, 0.65);
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: center;
  transition:
    background var(--duration-fast) var(--ease-out),
    color var(--duration-fast) var(--ease-out);
}

.dual-tab + .dual-tab {
  border-left: 1px solid rgba(200, 191, 176, 0.18);
}

.dual-tab:hover {
  background: rgba(247, 245, 241, 0.05);
  color: var(--bg);
}

.dual-tab.active {
  background: var(--accent);
  color: var(--dark);
}

.dual-tab-zh {
  font-family: 'Noto Serif TC', serif;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.15em;
}

.dual-tab-en {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  opacity: 0.8;
  text-transform: uppercase;
}

.dual-panels {
  position: relative;
}

.dual-panel {
  display: none;
  opacity: 0;
  animation: dual-fade 0.3s var(--ease-out) forwards;
}

.dual-panel.active {
  display: block;
}

@keyframes dual-fade {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

.dual-desc {
  font-family: 'Noto Sans TC', sans-serif;
  font-size: 0.88rem;
  color: rgba(247, 245, 241, 0.6);
  letter-spacing: 0.06em;
  text-align: center;
  margin: 0 0 32px;
}

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

.dual-cat {
  aspect-ratio: 4 / 3;
  position: relative;
  cursor: pointer;
  overflow: hidden;
  background: rgba(247, 245, 241, 0.04);
  transition: background var(--duration-fast) var(--ease-out);
}

.dual-cat:hover {
  background: rgba(154, 132, 86, 0.18);
}

.dual-cat-inner {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 16px;
  text-align: center;
  transition: transform var(--duration-normal) var(--ease-out);
}

.dual-cat:hover .dual-cat-inner {
  transform: scale(1.03);
}

.dual-cat-count {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 300;
  color: var(--accent);
  line-height: 1;
  letter-spacing: -0.02em;
}

.dual-cat-zh {
  font-family: 'Noto Serif TC', serif;
  font-size: 1rem;
  font-weight: 400;
  color: var(--bg);
  letter-spacing: 0.12em;
}

.dual-cat-en {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.7rem;
  color: rgba(247, 245, 241, 0.55);
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.dual-empty {
  text-align: center;
  padding: 40px;
  color: rgba(247, 245, 241, 0.4);
}


/* ══════════════════════════════════════════
   PORTFOLIO (CSS Masonry)
══════════════════════════════════════════ */
.portfolio {
  background: var(--bg);
  padding-bottom: 20px;
}

.portfolio-masonry {
  columns: 4;
  column-gap: 16px;
  padding: 0 48px;
}

.portfolio-card {
  break-inside: avoid;
  margin-bottom: 16px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border-radius: var(--radius-sm);
  display: block;
  background: var(--stone);
}

.portfolio-card img {
  display: block;
  width: 100%;
  height: auto;
  transform: scale(1);
  transition: transform 0.5s var(--ease-out);
  will-change: transform;
}

.portfolio-card-fallback {
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--dark);
  color: var(--stone);
  font-family: 'Noto Serif TC', serif;
  font-size: 0.9rem;
  padding: 20px;
  text-align: center;
}

.portfolio-card:hover img,
.portfolio-card:focus-within img {
  transform: scale(1.04);
}

.card-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px 20px 20px;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(28, 27, 24, 0.72) 50%,
    rgba(28, 27, 24, 0.92) 100%
  );
  color: var(--card);
  opacity: 0;
  transform: translateY(6px);
  transition:
    opacity var(--duration-normal) var(--ease-out),
    transform var(--duration-normal) var(--ease-out);
}

.portfolio-card:hover .card-info,
.portfolio-card:focus-within .card-info {
  opacity: 1;
  transform: translateY(0);
}

.card-name {
  font-family: 'Noto Serif TC', serif;
  font-size: 1rem;
  font-weight: 400;
  margin: 0 0 4px;
  letter-spacing: 0.06em;
}

.card-type,
.card-meta {
  display: block;
  font-family: 'Noto Sans TC', sans-serif;
  font-size: 0.72rem;
  font-weight: 300;
  color: rgba(247, 245, 241, 0.7);
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}

.card-story {
  font-family: 'Noto Sans TC', sans-serif;
  font-size: 0.72rem;
  line-height: 1.6;
  color: rgba(247, 245, 241, 0.6);
  margin: 6px 0 0;
  letter-spacing: 0.02em;
}


/* ══════════════════════════════════════════
   BRANDS SCROLL
══════════════════════════════════════════ */
.brands-scroll {
  background: var(--surface-warm);
  padding: 80px 0;
  overflow: hidden;
}

.brands-header {
  text-align: center;
  padding: 0 8% 48px;
}

.brands-track-wrapper {
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  cursor: grab;
}

.brands-track-wrapper::-webkit-scrollbar {
  display: none;
}

.brands-track-wrapper.dragging {
  cursor: grabbing;
  scroll-snap-type: none;
}

.brands-track {
  display: flex;
  gap: 24px;
  padding: 0 8% 8px;
  user-select: none;
}

.brands-track::after {
  content: '';
  flex-shrink: 0;
  width: calc(8% - 24px);
}

.brand-card {
  flex-shrink: 0;
  width: 340px;
  scroll-snap-align: start;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.brand-card-inner {
  background: var(--card);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform var(--duration-normal) var(--ease-out),
              box-shadow var(--duration-normal) var(--ease-out);
  box-shadow: var(--shadow-sm);
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.brand-card:hover .brand-card-inner {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.brand-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 3;
  font-family: 'Noto Sans TC', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: var(--dark);
  background: var(--accent);
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  box-shadow: 0 2px 8px rgba(154, 132, 86, 0.3);
}

.brand-cover {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: var(--stone);
}

.brand-cover-fallback {
  background: linear-gradient(135deg, var(--stone), var(--surface-warm));
}

.brand-info {
  padding: 20px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.brand-logo {
  max-height: 36px;
  max-width: 140px;
  object-fit: contain;
  align-self: flex-start;
  margin: 2px 0 4px;
}

.brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: var(--ink);
  margin: 0;
  text-transform: uppercase;
}

.brand-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Noto Sans TC', sans-serif;
  font-size: 0.75rem;
  color: var(--mute);
  letter-spacing: 0.05em;
}

.brand-meta-dot {
  color: var(--accent);
}

.brand-tagline {
  font-family: 'Noto Serif TC', serif;
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--ink);
  margin: 0;
  letter-spacing: 0.04em;
  line-height: 1.5;
}

.brand-story {
  font-family: 'Noto Sans TC', sans-serif;
  font-size: 0.78rem;
  line-height: 1.7;
  color: var(--mute);
  margin: 0;
  letter-spacing: 0.02em;
  flex: 1;
}

.brand-link {
  font-family: 'Noto Sans TC', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--accent);
  text-decoration: none;
  letter-spacing: 0.08em;
  margin-top: 4px;
  align-self: flex-start;
  position: relative;
  padding-bottom: 1px;
}

.brand-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width var(--duration-normal) var(--ease-out);
}

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


/* ══════════════════════════════════════════
   PATHWAYS
══════════════════════════════════════════ */
.pathways {
  background: var(--dark);
  padding: 0;
}

.pathways-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  height: 480px;
}

.pathway-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.pathway-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: transform 0.6s var(--ease-out);
  will-change: transform;
}

.pathway-fallback {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--dark), var(--ink));
}

.pathway-card:hover img,
.pathway-card:focus-within img {
  transform: scale(1.04);
}

.pathway-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(28, 27, 24, 0.15) 0%,
    rgba(28, 27, 24, 0.75) 100%
  );
  transition: background var(--duration-normal) var(--ease-out);
}

.pathway-card:hover .pathway-overlay {
  background: linear-gradient(
    to bottom,
    rgba(28, 27, 24, 0.25) 0%,
    rgba(28, 27, 24, 0.88) 100%
  );
}

.pathway-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.pathway-tag {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(154, 132, 86, 0.15);
  padding: 4px 10px;
  border: 1px solid rgba(154, 132, 86, 0.4);
  border-radius: 2px;
}

.pathway-title {
  font-family: 'Noto Serif TC', serif;
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--card);
  letter-spacing: 0.08em;
  margin: 0;
}

.pathway-desc {
  font-family: 'Noto Sans TC', sans-serif;
  font-size: 0.82rem;
  font-weight: 300;
  color: rgba(247, 245, 241, 0.7);
  letter-spacing: 0.06em;
  margin: 0;
}

.pathway-btn {
  display: inline-block;
  margin-top: 8px;
  font-family: 'Noto Sans TC', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-decoration: none;
  color: var(--card);
  border: 1px solid rgba(247, 245, 241, 0.45);
  padding: 8px 18px;
  border-radius: 2px;
  opacity: 0;
  transform: translateY(8px);
  transition:
    opacity var(--duration-normal) var(--ease-out),
    transform var(--duration-normal) var(--ease-out),
    background var(--duration-fast) var(--ease-out),
    border-color var(--duration-fast) var(--ease-out);
}

.pathway-card:hover .pathway-btn,
.pathway-card:focus-within .pathway-btn {
  opacity: 1;
  transform: translateY(0);
}

.pathway-btn:hover {
  background: rgba(247, 245, 241, 0.12);
  border-color: rgba(247, 245, 241, 0.8);
}


/* ══════════════════════════════════════════
   TRUST — 橫排 4 欄數字
══════════════════════════════════════════ */
.trust {
  background: var(--dark);
  padding: 88px 8%;
}

.trust-inner {
  max-width: var(--container-wide);
  margin: 0 auto;
}

.trust-lede {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 56px;
  flex-wrap: wrap;
}

.trust-lede-en {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  font-weight: 400;
  color: var(--accent);
  letter-spacing: 0.3em;
}

.trust-lede-dot {
  color: var(--accent);
  opacity: 0.5;
  font-size: 1.2rem;
}

.trust-lede-zh {
  font-family: 'Noto Serif TC', serif;
  font-size: clamp(1rem, 1.6vw, 1.25rem);
  font-weight: 400;
  color: var(--bg);
  letter-spacing: 0.15em;
}

.trust-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  align-items: start;
}

.trust-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
  padding: 0 8px;
  position: relative;
}

.trust-stat + .trust-stat::before {
  content: '';
  position: absolute;
  top: 14%;
  left: -12px;
  width: 1px;
  height: 72%;
  background: rgba(200, 191, 176, 0.16);
}

.trust-stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 300;
  color: var(--accent);
  line-height: 1;
  letter-spacing: -0.01em;
}

.trust-stat-label {
  font-family: 'Noto Sans TC', sans-serif;
  font-size: 0.82rem;
  font-weight: 300;
  color: rgba(247, 245, 241, 0.7);
  letter-spacing: 0.16em;
  line-height: 1.5;
}


/* ══════════════════════════════════════════
   BLOG
══════════════════════════════════════════ */
.blog-section {
  background: var(--bg);
  padding: 88px 8%;
}

.blog-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 40px;
}

.blog-header .section-title {
  margin: 0;
}

.blog-more {
  font-family: 'Noto Sans TC', sans-serif;
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--accent);
  text-decoration: none;
  letter-spacing: 0.08em;
}

.blog-more:hover {
  color: var(--accent-dark);
}

.blog-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.blog-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--card);
  box-shadow: var(--shadow-sm);
  transition: transform var(--duration-normal) var(--ease-out),
              box-shadow var(--duration-normal) var(--ease-out);
  cursor: pointer;
  display: block;
  text-decoration: none;
  color: inherit;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.blog-card img,
.blog-card-fallback {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  transition: transform 0.5s var(--ease-out);
  background: var(--stone);
}

.blog-card:hover img {
  transform: scale(1.04);
}

.blog-card-body {
  padding: 20px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.blog-tag {
  font-family: 'Noto Sans TC', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--accent);
  text-transform: uppercase;
  align-self: flex-start;
}

.blog-title {
  font-family: 'Noto Serif TC', serif;
  font-size: 1rem;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.55;
  letter-spacing: 0.03em;
  margin: 0;
}

.blog-summary {
  font-family: 'Noto Sans TC', sans-serif;
  font-size: 0.8rem;
  line-height: 1.7;
  color: var(--mute);
  margin: 0;
  letter-spacing: 0.02em;
}

.blog-date {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--mute);
  letter-spacing: 0.12em;
  margin-top: auto;
}


/* ══════════════════════════════════════════
   FOOTER — 4 欄桌機 / 單欄手機
══════════════════════════════════════════ */
.site-footer {
  background: var(--dark);
  color: var(--bg);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1.2fr 1fr;
  gap: 48px;
  padding: 72px 8% 56px;
  border-bottom: 1px solid rgba(200, 191, 176, 0.12);
  align-items: start;
  max-width: var(--container-wide);
  margin: 0 auto;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-width: 0;
}

.footer-logo {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: var(--bg);
  gap: 3px;
  margin-bottom: 4px;
}

.footer-logo .logo-en {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 500;
  letter-spacing: 0.18em;
}

.footer-logo .logo-zh {
  font-family: 'Noto Serif TC', serif;
  font-size: 0.65rem;
  font-weight: 300;
  letter-spacing: 0.28em;
  opacity: 0.65;
}

.footer-tagline {
  font-family: 'Noto Serif TC', serif;
  font-size: 0.95rem;
  font-weight: 300;
  letter-spacing: 0.12em;
  color: var(--bg);
  margin: 0;
}

.footer-sub {
  font-family: 'Noto Sans TC', sans-serif;
  font-size: 0.78rem;
  font-weight: 300;
  color: rgba(247, 245, 241, 0.5);
  letter-spacing: 0.05em;
  margin: 0;
  line-height: 1.7;
}

.footer-nav-title {
  font-family: 'Noto Serif TC', serif;
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  color: var(--stone);
  margin: 0 0 8px;
  text-transform: uppercase;
}

.footer-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-menu a {
  font-family: 'Noto Sans TC', sans-serif;
  font-size: 0.85rem;
  font-weight: 300;
  color: rgba(247, 245, 241, 0.6);
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: color var(--duration-fast) var(--ease-out);
}

.footer-menu a:hover {
  color: var(--bg);
}

.footer-showroom {
  margin-bottom: 14px;
  font-family: 'Noto Sans TC', sans-serif;
  font-size: 0.8rem;
  line-height: 1.7;
}

.footer-showroom-name {
  font-family: 'Noto Serif TC', serif;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--bg);
  letter-spacing: 0.08em;
  margin: 0 0 4px;
}

.footer-showroom p {
  margin: 0;
  color: rgba(247, 245, 241, 0.55);
  letter-spacing: 0.02em;
}

.footer-showroom a {
  color: rgba(247, 245, 241, 0.7);
  text-decoration: none;
}

.footer-showroom a:hover {
  color: var(--accent);
}

.footer-showroom-hours {
  font-size: 0.74rem;
  color: rgba(247, 245, 241, 0.4) !important;
  margin-top: 2px !important;
}

.footer-socials {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 36px;
  padding: 0 12px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-decoration: none;
  border-radius: 20px;
  transition:
    background var(--duration-fast) var(--ease-out),
    transform var(--duration-fast) var(--ease-out);
}

.social-btn--line {
  background: rgba(6, 199, 85, 0.15);
  color: var(--line-green);
  border: 1px solid rgba(6, 199, 85, 0.3);
}
.social-btn--line:hover {
  background: var(--line-green);
  color: var(--card);
}

.social-btn--ig,
.social-btn--fb,
.social-btn--shopee {
  background: rgba(247, 245, 241, 0.08);
  color: rgba(247, 245, 241, 0.65);
  border: 1px solid rgba(247, 245, 241, 0.15);
  font-family: 'Noto Sans TC', sans-serif;
}
.social-btn--ig:hover,
.social-btn--fb:hover,
.social-btn--shopee:hover {
  background: rgba(247, 245, 241, 0.15);
  color: var(--bg);
  transform: translateY(-2px);
}

.footer-address {
  font-style: normal;
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 4px;
}

.footer-address a {
  font-family: 'Noto Sans TC', sans-serif;
  font-size: 0.8rem;
  font-weight: 300;
  color: rgba(247, 245, 241, 0.5);
  letter-spacing: 0.04em;
  text-decoration: none;
}

.footer-address a:hover {
  color: var(--accent);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 8%;
  flex-wrap: wrap;
  gap: 12px;
  max-width: var(--container-wide);
  margin: 0 auto;
}

.footer-bottom p,
.footer-bottom-links {
  font-family: 'Noto Sans TC', sans-serif;
  font-size: 0.74rem;
  font-weight: 300;
  color: rgba(247, 245, 241, 0.35);
  letter-spacing: 0.06em;
  margin: 0;
}

.footer-bottom-links {
  display: flex;
  gap: 16px;
  align-items: center;
}

.footer-bottom-links a {
  color: rgba(247, 245, 241, 0.35);
  text-decoration: none;
  transition: color var(--duration-fast) var(--ease-out);
}

.footer-bottom-links a:hover {
  color: rgba(247, 245, 241, 0.8);
}

.footer-bottom-links span {
  opacity: 0.3;
}
