:root {
  --bg: #fff8f3;
  --paper: #fffdf9;
  --warm: #f6c7b8;
  --coral: #f07e67;
  --coral-dark: #c85f4d;
  --ink: #5b463c;
  --muted: #7a6357;
  --line: rgba(91, 70, 60, 0.14);
  --teal: #76b7b2;
  --soft: #fff4ed;
  --shadow: 0 18px 48px rgba(91, 70, 60, 0.08);
  --font-sans: "Noto Sans TC", "PingFang TC", "Microsoft JhengHei", system-ui, sans-serif;
  --font-serif: "Noto Serif TC", "Songti TC", "Noto Serif CJK TC", serif;
  --font-latin-serif: Georgia, "Times New Roman", serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 0 21%, rgba(246, 199, 184, 0.24), transparent 230px),
    radial-gradient(circle at 97% 8%, rgba(246, 199, 184, 0.22), transparent 170px),
    linear-gradient(180deg, #fffdf9 0%, var(--bg) 52%, #fffdf9 100%);
  font-family: var(--font-sans);
  font-size: 14px;
  line-height: 1.75;
}

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

.site-header,
.hero,
.section,
.contact {
  width: min(860px, calc(100% - 48px));
  margin-inline: auto;
}

.site-header {
  display: flex;
  align-items: center;
  gap: 28px;
  min-height: 84px;
}

.brand {
  display: inline-flex;
  align-items: baseline;
  gap: 7px;
  min-width: 188px;
}

.brand-mark {
  font-family: var(--font-serif);
  font-size: 25px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-name {
  font-family: var(--font-latin-serif);
  font-size: 19px;
  font-style: italic;
}

nav {
  display: flex;
  justify-content: flex-end;
  gap: 26px;
  flex: 1;
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
}

nav a:hover,
.contact a:hover {
  color: var(--coral-dark);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0 22px;
  border: 1px solid var(--coral-dark);
  border-radius: 999px;
  background: var(--coral);
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(240, 126, 103, 0.22);
}

.button-small {
  min-width: 88px;
  min-height: 40px;
  padding-inline: 16px;
  background: linear-gradient(135deg, #f7a18d, var(--coral));
}

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

h1 {
  margin: 0 0 14px;
  font-family: var(--font-serif);
  font-size: 56px;
  line-height: 1.05;
  letter-spacing: 0;
  font-weight: 800;
}

h2 {
  margin: 0 0 18px;
  font-size: 20px;
  line-height: 1.3;
  letter-spacing: 0;
  font-family: var(--font-serif);
  font-weight: 700;
}

h3 {
  margin: 0 0 10px;
  font-size: 17px;
  line-height: 1.35;
  font-family: var(--font-serif);
  font-weight: 700;
}

.badge,
.eyebrow {
  margin: 0;
  color: var(--coral-dark);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
}

.badge {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 22px;
  padding: 6px 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--warm), var(--coral));
  color: #fff;
}

.hero {
  display: grid;
  grid-template-columns: 425px 1fr;
  gap: 34px;
  align-items: center;
  padding: 52px 0 36px;
}

.hero-copy {
  padding-top: 22px;
}

.hero-line {
  margin-bottom: 28px;
  font-size: 20px;
  font-family: var(--font-serif);
  font-weight: 700;
}

.hero-text {
  max-width: 330px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.9;
}

.chips {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-top: 42px;
}

.chips span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 50px;
  padding: 8px 6px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 253, 249, 0.72);
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
  text-align: center;
  white-space: nowrap;
}

.chips img {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
}

.hero-media {
  position: relative;
  margin: 0;
}

.hero-media img {
  display: block;
  width: 100%;
  height: 390px;
  object-fit: cover;
  object-position: 46% 50%;
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.hero-keywords {
  position: absolute;
  right: -16px;
  bottom: 26px;
  display: grid;
  gap: 6px;
  width: 128px;
  padding: 16px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 253, 249, 0.92);
  color: var(--muted);
  box-shadow: 0 14px 34px rgba(91, 70, 60, 0.08);
}

.hero-keywords strong {
  color: var(--ink);
  font-size: 13px;
}

.hero-keywords span {
  font-size: 12px;
  font-weight: 800;
}

.section {
  padding: 0;
}

.section + .section {
  margin-top: 42px;
}

.shell {
  padding: 26px 18px 16px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 253, 249, 0.72);
  box-shadow: var(--shadow);
}

.section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.section-head > div {
  display: flex;
  align-items: baseline;
  gap: 9px;
}

.section-head h2 {
  margin-bottom: 0;
}

.section-head .eyebrow {
  color: var(--ink);
  font-family: var(--font-latin-serif);
  font-size: 14px;
  font-style: italic;
  font-weight: 500;
}

.update-note,
.safe-note {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
}

.stat-card,
.feature-card,
.faq-grid article,
.contact-grid article,
.fit-panel,
.checklist {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.stat-card {
  display: grid;
  align-content: center;
  min-height: 124px;
  padding: 14px 6px 12px;
  text-align: center;
}

.stat-card p {
  margin-bottom: 5px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 500;
}

.stat-card strong {
  color: var(--teal);
  font-family: var(--font-latin-serif);
  font-size: 23px;
  font-weight: 500;
  line-height: 1.1;
  overflow-wrap: anywhere;
}

.stat-card:nth-child(5) strong {
  font-size: 21px;
  line-height: 1.18;
}

.stat-card:last-child strong {
  font-size: 15px;
}

.icon {
  order: 3;
  justify-self: center;
  width: 30px;
  height: 30px;
  margin-top: 12px;
}

.shell .safe-note {
  margin-top: 13px;
  text-align: right;
}

#formats {
  margin-top: 28px;
}

#formats .section-head,
#fit > div:first-child > .eyebrow,
#process > .eyebrow,
#faq .eyebrow {
  display: none;
}

#formats h2,
#fit h2,
#process h2,
#faq h2 {
  position: relative;
  margin-bottom: 18px;
  padding-left: 15px;
  font-size: 20px;
}

#formats h2::before,
#fit h2::before,
#process h2::before,
#faq h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 4px;
  height: 18px;
  border-radius: 999px;
  background: var(--coral);
}

.cards-grid {
  display: grid;
  gap: 18px;
}

.four {
  grid-template-columns: repeat(4, 1fr);
}

.feature-card {
  min-height: 242px;
  padding: 30px 20px 18px;
  text-align: left;
}

.feature-card h3 {
  text-align: center;
}

.feature-card ul {
  margin: 0 0 18px;
  padding-left: 18px;
  color: var(--ink);
  font-size: 12px;
  line-height: 1.85;
}

.feature-card li + li {
  margin-top: 2px;
}

.feature-card p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.8;
}

.feature-card p strong {
  display: block;
  color: var(--ink);
  font-size: 12px;
}

.round-icon {
  width: 58px;
  height: 58px;
  display: block;
  margin: 0 auto 20px;
}

#formats .safe-note {
  margin-top: 28px;
  text-align: center;
  font-size: 14px;
}

.two-column {
  display: grid;
  grid-template-columns: 230px 1fr;
  gap: 26px;
  align-items: start;
}

.fit-list {
  display: grid;
  gap: 14px;
}

.fit-list article {
  position: relative;
  min-height: 62px;
  padding-left: 68px;
}

.fit-list img {
  position: absolute;
  left: 4px;
  top: 4px;
  width: 46px;
  height: 46px;
}

.fit-list strong {
  display: block;
  margin-bottom: 3px;
  font-size: 15px;
}

.fit-list span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}

.fit-panel {
  padding: 28px 32px 22px;
  border-radius: 18px;
}

.fit-panel h3 {
  margin-bottom: 22px;
  text-align: left;
}

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

.category-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
  text-align: center;
}

.fit-panel::after {
  content: "不侷限於以上類別，更多合作可能，歡迎與我聯繫！";
  display: block;
  margin-top: 24px;
  color: var(--muted);
  font-size: 12px;
  text-align: center;
}

#process.shell {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  margin: 0;
  padding: 22px 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 253, 249, 0.72);
  list-style: none;
}

.process-list li {
  position: relative;
  min-height: 112px;
  padding: 0 10px;
  text-align: center;
}

.process-list li + li::before {
  content: "";
  position: absolute;
  top: 21px;
  left: -50%;
  width: 100%;
  border-top: 2px dotted rgba(240, 126, 103, 0.35);
}

.process-list span {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 10px;
  border: 1px solid var(--warm);
  border-radius: 50%;
  background: #fff;
  color: var(--coral-dark);
  font-family: var(--font-latin-serif);
  font-weight: 900;
}

.process-list strong {
  display: block;
  margin-bottom: 4px;
  font-size: 13px;
}

.process-list p {
  margin: 0;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.55;
}

.faq-layout {
  display: grid;
  grid-template-columns: 1fr 170px;
  gap: 18px;
  align-items: end;
}

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

.faq-grid article {
  min-height: 86px;
  padding: 14px 18px;
}

.faq-grid h3 {
  margin-bottom: 6px;
  font-size: 12px;
}

.faq-grid h3::before {
  content: "Q：";
  color: var(--ink);
}

.faq-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.6;
}

.faq-grid p::before {
  content: "A：";
  color: var(--ink);
}

.checklist {
  padding: 24px 20px;
  transform: rotate(-2deg);
  background: #fff8f3;
  box-shadow: 0 16px 34px rgba(91, 70, 60, 0.08);
}

.checklist h3 {
  margin-bottom: 12px;
  color: var(--coral-dark);
  font-family: "Kaiti TC", "BiauKai", cursive;
  font-size: 19px;
  text-align: center;
}

.checklist p {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.contact {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 20px;
  width: min(920px, 100%);
  margin-top: 34px;
  padding: 32px 42px 22px;
  border-radius: 24px 24px 0 0;
  background: linear-gradient(135deg, #f8b8a4, #f4c2b5);
}

.contact-copy {
  padding-top: 6px;
}

.contact-copy .eyebrow {
  display: none;
}

.contact h2 {
  margin-bottom: 8px;
  font-family: var(--font-serif);
  font-size: 30px;
  font-weight: 800;
}

.contact-copy p {
  margin-bottom: 20px;
  color: var(--ink);
  font-size: 12px;
}

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

.contact-grid article {
  display: grid;
  gap: 4px;
  min-height: 122px;
  padding: 16px 18px 14px;
}

.contact-grid span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
}

.contact-grid strong {
  overflow-wrap: anywhere;
  font-size: 15px;
  line-height: 1.35;
}

.contact-grid a {
  align-self: end;
  display: inline-flex;
  justify-content: center;
  padding: 7px 12px;
  border: 1px solid rgba(91, 70, 60, 0.28);
  border-radius: 999px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
}

.copyright {
  grid-column: 1 / -1;
  margin: 0;
  color: rgba(91, 70, 60, 0.64);
  font-family: var(--font-latin-serif);
  font-size: 11px;
  text-align: center;
}

@media (max-width: 900px) {
  .site-header,
  .hero,
  .section {
    width: min(100% - 28px, 860px);
  }

  .site-header {
    flex-wrap: wrap;
    gap: 14px;
    padding-top: 16px;
  }

  nav {
    order: 3;
    justify-content: flex-start;
    gap: 14px;
    width: 100%;
    overflow-x: auto;
  }

  .hero,
  .two-column,
  .faq-layout,
  .contact {
    grid-template-columns: 1fr;
  }

  .hero {
    gap: 28px;
    padding-top: 34px;
  }

  .hero-copy {
    padding-top: 0;
  }

  .hero-text {
    max-width: none;
  }

  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .four,
  .category-grid,
  .process-list,
  .faq-grid,
  .contact-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-list li + li::before {
    display: none;
  }

  .contact {
    width: 100%;
    border-radius: 24px 24px 0 0;
  }
}

@media (max-width: 560px) {
  h1 {
    font-size: 44px;
  }

  .hero-line {
    font-size: 18px;
  }

  .chips,
  .stats-grid,
  .four,
  .category-grid,
  .process-list,
  .faq-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-media img {
    height: 360px;
  }

  .hero-keywords {
    right: 12px;
  }

  .shell,
  .contact {
    padding-inline: 20px;
  }
}
