:root {
  --bg: #f5efe6;
  --bg-soft: #fffaf2;
  --text: #2f2a25;
  --muted: #6d6258;
  --primary: #8b5e34;
  --primary-dark: #6d4525;
  --card: rgba(255, 255, 255, 0.78);
  --border: rgba(109, 69, 37, 0.16);
  --shadow: 0 16px 40px rgba(60, 38, 20, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Noto Serif TC", "Microsoft JhengHei", serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(139, 94, 52, 0.14), transparent 35%),
    linear-gradient(180deg, #fffdf8 0%, var(--bg) 100%);
}

a {
  color: inherit;
  text-decoration: none;
}

.hero,
.section {
  width: min(1100px, calc(100% - 32px));
  margin: 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: 1.4fr 0.9fr;
  gap: 24px;
  padding: 64px 0 28px;
  align-items: stretch;
}

.hero__content,
.hero__card,
.card,
.info__item {
  border: 1px solid var(--border);
  border-radius: 24px;
  background: var(--card);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.hero__media {
  display: grid;
  gap: 16px;
}

.hero__image {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 24px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.hero__content {
  padding: 40px;
}

.eyebrow,
.hero__card-label,
.tag {
  display: inline-block;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.82rem;
  color: var(--primary-dark);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  font-size: clamp(2.4rem, 6vw, 4.8rem);
  line-height: 1.05;
  margin: 12px 0 18px;
}

.hero__text {
  font-size: 1.08rem;
  line-height: 1.9;
  color: var(--muted);
  max-width: 34rem;
}

.hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.btn {
  padding: 14px 20px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

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

.btn--ghost {
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.6);
}

.hero__card {
  padding: 32px;
  align-self: end;
}

.hero__card h2 {
  font-size: 1.7rem;
  line-height: 1.3;
  margin: 12px 0 18px;
}

.hero__card ul {
  padding-left: 20px;
  margin: 0;
  color: var(--muted);
  line-height: 1.9;
}

.section {
  padding: 28px 0 56px;
}

.section__header {
  margin-bottom: 18px;
}

.section__header h2 {
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  margin-bottom: 0;
}

.grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.card {
  padding: 24px;
  min-height: 200px;
}

.tag {
  font-weight: 700;
}

.card h3,
.info__item h3 {
  margin: 12px 0 10px;
  font-size: 1.2rem;
}

.card p,
.info__item p {
  color: var(--muted);
  line-height: 1.8;
}

.section--soft {
  padding-bottom: 72px;
}

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

.info__item {
  padding: 24px;
}

@media (max-width: 900px) {
  .hero,
  .grid,
  .info {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 24px;
  }
}

@media (max-width: 600px) {
  .hero__content,
  .hero__card,
  .hero__image,
  .card,
  .info__item {
    border-radius: 20px;
  }

  .hero__content,
  .hero__card {
    padding: 24px;
  }

  .section {
    width: min(100% - 20px, 1100px);
  }
}
