/* ── 共用 home-section 樣式（index.html & 編輯器共用） ── */

.home-section {
  position: relative;
  z-index: 1;
  background: #f5f3ef;
}

.home-section-inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 100px 60px;
}

.hs-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  color: #ecad29;
  margin-bottom: 12px;
}

.hs-title {
  font-family: "Oswald", sans-serif;
  font-size: 44px;
  font-weight: 600;
  color: #1a1a1a;
  margin: 0 0 8px;
}

.hs-subtitle {
  font-size: 16px;
  color: #777;
  margin: 0 0 48px;
}

/* Section 2: 工作室介紹 */
.studio-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  max-width: 960px;
  margin: 0 auto;
}

.studio-intro-text p {
  font-size: 15px;
  line-height: 1.9;
  color: #444;
  margin: 0 0 28px;
  max-width: 28em;
}

.studio-meta { display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }

.studio-meta-item {
  display: flex;
  gap: 12px;
  font-size: 14px;
  color: #555;
  align-items: flex-start;
}

.meta-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #ecad29;
  min-width: 36px;
  flex-shrink: 0;
  margin-top: 2px;
}

.studio-intro-map {
  display: flex;
  flex-direction: column;
}

#studio-map {
  width: 100%;
  height: 100%;
  min-height: 480px;
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}

.hs-cta {
  display: inline-block;
  background: #ecad29;
  color: #1a1a1a;
  font-weight: 600;
  font-size: 13px;
  padding: 12px 28px;
  border-radius: 99px;
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: background 0.2s;
}
.hs-cta:hover { background: #f0bc45; }

.studio-intro-map iframe { display: block; box-shadow: 0 4px 24px rgba(0,0,0,0.08); }

/* Section 3: 交通 & 停車 */
.transport-section { background: #eeebe5; }

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

.transport-card {
  background: #fff;
  border-radius: 16px;
  padding: 28px 24px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}

.transport-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  color: #ecad29;
  background: rgba(236,173,41,0.1);
  border: 1px solid rgba(236,173,41,0.3);
  border-radius: 4px;
  padding: 3px 8px;
  margin-bottom: 14px;
}

.transport-card h3 {
  font-family: "Oswald", sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #1a1a1a;
  margin: 0 0 8px;
}

.transport-card p { font-size: 14px; color: #555; line-height: 1.7; margin: 0; }

.parking-title {
  font-family: "Oswald", sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: #1a1a1a;
  margin: 0 0 20px;
}

.parking-list { display: flex; flex-direction: column; gap: 0; }

.parking-item {
  display: flex;
  align-items: baseline;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.parking-item:last-child { border-bottom: none; }

.parking-name {
  font-weight: 600;
  color: #1a1a1a;
  font-size: 14px;
  min-width: 160px;
  flex-shrink: 0;
}

.parking-addr { font-size: 14px; color: #666; }
.parking-addr em { color: #ecad29; font-style: normal; font-weight: 500; }

/* RWD */
@media (max-width: 1100px) {
  .home-section-inner { padding: 60px 24px; }
  .hs-title { font-size: 32px; }
  .parking-item { flex-direction: column; gap: 4px; }
  .parking-name { min-width: auto; }
  .studio-intro-grid { gap: 28px; }
  .transport-grid { gap: 14px; }
}

@media (max-width: 600px) {
  .studio-intro-grid { grid-template-columns: 1fr; }
  .transport-grid { grid-template-columns: 1fr; }
}
