.page-hero {
  padding: 120px 7% 60px;
  background: var(--g2);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: 'CONTACT';
  position: absolute;
  right: -20px;
  bottom: -30px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 180px;
  font-weight: 600;
  color: rgba(200, 160, 96, 0.05);
  pointer-events: none;
}

.breadcrumb { display: flex; align-items: center; gap: 10px; margin-bottom: 20px; }
.breadcrumb span, .breadcrumb a { font-size: 11px; letter-spacing: 2px; color: rgba(200,160,96,.5); font-family: 'Cormorant Garamond', serif; text-decoration: none; }
.breadcrumb .current { color: var(--gold); }
.eyebrow { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }
.eyebrow-line { width: 32px; height: 1px; background: var(--gold); }
.eyebrow span { font-family: 'Cormorant Garamond', serif; font-size: 11px; letter-spacing: 6px; color: var(--gold); }
.page-title { font-family: 'Noto Serif TC', serif; font-size: clamp(26px, 3.5vw, 44px); font-weight: 700; color: #f0ece2; letter-spacing: 4px; margin-bottom: 14px; }
.page-desc { font-size: 13.5px; line-height: 2; color: rgba(240,235,220,.6); font-weight: 300; max-width: 560px; }

.contact-page { padding: 60px 7% 90px; background: var(--cream); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 48px; align-items: start; }

.contact-info-card {
  background: var(--g2);
  padding: 40px 36px;
  border: 1px solid rgba(200,160,96,.2);
}

.contact-info-card h3 {
  font-family: 'Noto Serif TC', serif;
  font-size: 18px;
  color: var(--gold2);
  letter-spacing: 3px;
  margin-bottom: 24px;
}

.contact-info-item {
  margin-bottom: 20px;
  font-size: 13.5px;
  line-height: 1.9;
  color: rgba(240,235,220,.65);
  font-weight: 300;
}

.contact-info-item strong {
  display: block;
  font-size: 10px;
  letter-spacing: 3px;
  color: var(--gold);
  font-family: 'Cormorant Garamond', serif;
  margin-bottom: 4px;
  font-weight: 400;
}

.line-block {
  margin-top: 28px;
  display: inline-flex;
  align-items: center;
  gap: 20px;
  padding: 20px 28px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(200,160,96,.2);
  text-decoration: none;
}

.line-icon { width: 44px; height: 44px; background: #06C755; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 22px; color: #fff; }
.line-text strong { display: block; font-size: 13px; font-weight: 600; color: var(--gold2); letter-spacing: 1px; font-family: 'Noto Serif TC', serif; }
.line-text span { font-size: 11px; color: rgba(240,235,220,.5); font-weight: 300; }

.contact-form-card {
  background: var(--white);
  padding: 40px 36px;
  border: 1px solid rgba(26,48,33,.1);
}

.contact-form-card h3 {
  font-family: 'Noto Serif TC', serif;
  font-size: 18px;
  color: var(--g2);
  letter-spacing: 3px;
  margin-bottom: 28px;
}

.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--g3);
  margin-bottom: 8px;
  font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(26,48,33,.15);
  font-family: 'Noto Sans TC', sans-serif;
  font-size: 14px;
  background: var(--white);
  color: var(--text);
}

.form-group textarea { min-height: 140px; resize: vertical; }

.btn-submit {
  background: var(--g2);
  color: var(--cream);
  padding: 16px 48px;
  font-size: 12.5px;
  letter-spacing: 3px;
  border: none;
  cursor: pointer;
  font-family: 'Noto Sans TC', sans-serif;
  transition: all 0.3s;
  width: 100%;
}

.btn-submit:hover { background: var(--g3); }

.form-alert {
  padding: 14px 18px;
  margin-bottom: 20px;
  font-size: 13px;
  border-left: 4px solid var(--gold);
}

.form-alert.success { background: rgba(45,90,61,.1); color: var(--g3); }
.form-alert.error { background: rgba(200,80,60,.08); color: #8b3030; }

@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr; }
}
