:root {
  --背景: #f4efe6;
  --背景深: #14120f;
  --主色: #b8894c;
  --主色深: #8a642f;
  --文字: #201c17;
  --次文字: #62584d;
  --卡片: rgba(255, 255, 255, 0.72);
  --卡片深: rgba(20, 18, 15, 0.92);
  --邊框: rgba(20, 18, 15, 0.1);
  --陰影: 0 24px 70px rgba(20, 18, 15, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Noto Sans TC", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(184, 137, 76, 0.2), transparent 26%),
    radial-gradient(circle at top right, rgba(20, 18, 15, 0.09), transparent 22%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.18), transparent 20%),
    var(--背景);
  color: var(--文字);
}

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

.容器 {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.頂部導覽 {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(244, 239, 230, 0.86);
  border-bottom: 1px solid var(--邊框);
}

.導覽列 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 0;
}

.品牌標誌 {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.品牌標誌__圖示 {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: linear-gradient(135deg, #7e5a2a, #d8b77f);
  color: #fff;
  box-shadow: var(--陰影);
}

.導覽選單 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  color: var(--次文字);
  font-weight: 500;
}

.導覽選單 a:hover,
.頁尾 a:hover {
  color: var(--主色深);
}

.按鈕 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 700;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.按鈕:hover {
  transform: translateY(-1px);
}

.按鈕--主 {
  background: var(--背景深);
  color: #fff;
  box-shadow: var(--陰影);
}

.按鈕--主:hover {
  background: #231f1a;
}

.按鈕--次 {
  background: transparent;
  border-color: rgba(17, 17, 17, 0.16);
}

.按鈕--寬 {
  width: 100%;
}

.英雄區 {
  padding: 92px 0 58px;
}

.英雄區__內容 {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 28px;
  align-items: center;
  position: relative;
}

.英雄區__內容::before {
  content: "";
  position: absolute;
  inset: -18px -22px auto auto;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184, 137, 76, 0.18), transparent 68%);
  pointer-events: none;
}

.標籤 {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 16px;
  color: var(--主色深);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.英雄區 h1,
.區塊標題 h2 {
  margin: 0;
  line-height: 1.12;
  letter-spacing: -0.03em;
}

.英雄區 h1 {
  font-size: clamp(2.7rem, 5vw, 5rem);
  max-width: 12ch;
}

.主文 {
  max-width: 60ch;
  margin: 20px 0 0;
  font-size: 1.1rem;
  line-height: 1.9;
  color: var(--次文字);
}

.英雄區__按鈕列 {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.數據列 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 30px;
}

.數據卡,
.焦點卡,
.服務卡,
.品牌磚,
.表單卡,
.資訊卡,
.文章卡,
.文章補充__卡 {
  border: 1px solid var(--邊框);
  border-radius: 24px;
  background: var(--卡片);
  box-shadow: var(--陰影);
}

.數據卡 {
  padding: 18px;
}

.數據卡 strong,
.焦點卡__標題,
.服務卡__編號,
.資訊卡__標題 {
  display: block;
  margin-bottom: 8px;
  font-size: 0.92rem;
  color: var(--主色深);
}

.數據卡 span,
.焦點卡 p,
.區塊標題 p,
.品牌磚 {
  color: var(--次文字);
}

.英雄區__卡片 {
  display: grid;
  gap: 16px;
}

.英雄視覺 {
  margin: 0;
}

.英雄視覺__外框 {
  position: relative;
  min-height: 320px;
  padding: 26px;
  border-radius: 28px;
  border: 1px solid rgba(20, 18, 15, 0.08);
  background:
    radial-gradient(circle at 20% 20%, rgba(184, 137, 76, 0.18), transparent 26%),
    radial-gradient(circle at 80% 15%, rgba(20, 18, 15, 0.08), transparent 22%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.58));
  overflow: hidden;
  box-shadow: var(--陰影);
  animation: 漸入 0.9s ease both;
}

.英雄視覺__外框::before,
.英雄視覺__外框::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.英雄視覺__外框::before {
  inset: auto auto 22px 18px;
  width: 140px;
  height: 140px;
  background: radial-gradient(circle, rgba(184, 137, 76, 0.18), transparent 68%);
  animation: 漂浮 6s ease-in-out infinite;
}

.英雄視覺__外框::after {
  right: -28px;
  top: -24px;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(20, 18, 15, 0.08), transparent 70%);
  animation: 漂浮 7s ease-in-out infinite reverse;
}

.英雄視覺__核心 {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 268px;
}

.英雄視覺__圓環 {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 152px;
  height: 152px;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(20, 18, 15, 0.12);
  background:
    radial-gradient(circle at center, rgba(255, 255, 255, 0.2), transparent 55%),
    conic-gradient(from 180deg, rgba(184, 137, 76, 0.82), rgba(20, 18, 15, 0.12), rgba(184, 137, 76, 0.82));
  animation: 旋轉 16s linear infinite;
}

.英雄視覺__直條 {
  position: absolute;
  bottom: 32px;
  width: 18px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(20, 18, 15, 0.18), rgba(184, 137, 76, 0.9));
  transform-origin: bottom;
  animation: 成長 1.2s ease both;
}

.英雄視覺__直條--一 {
  left: 42px;
  height: 92px;
  animation-delay: 0.1s;
}

.英雄視覺__直條--二 {
  left: 72px;
  height: 138px;
  animation-delay: 0.25s;
}

.英雄視覺__直條--三 {
  left: 102px;
  height: 70px;
  animation-delay: 0.4s;
}

.英雄視覺__卡片 {
  position: absolute;
  min-width: 128px;
  padding: 12px 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(20, 18, 15, 0.08);
  box-shadow: 0 14px 32px rgba(20, 18, 15, 0.1);
  animation: 漂浮 4.8s ease-in-out infinite;
}

.英雄視覺__卡片 span {
  display: block;
  margin-bottom: 6px;
  font-size: 0.82rem;
  color: var(--主色深);
  font-weight: 700;
}

.英雄視覺__卡片 strong {
  font-size: 1rem;
}

.英雄視覺__卡片--一 {
  top: 28px;
  left: 18px;
  animation-delay: 0.2s;
}

.英雄視覺__卡片--二 {
  right: 18px;
  bottom: 26px;
  animation-delay: 0.55s;
}

.英雄視覺__浮標 {
  position: absolute;
  z-index: 3;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(20, 18, 15, 0.92);
  color: #fff;
  font-size: 0.88rem;
  box-shadow: 0 12px 28px rgba(20, 18, 15, 0.14);
  animation: 漂浮 5.4s ease-in-out infinite;
}

.英雄視覺__浮標--左 {
  left: 18px;
  top: 18px;
}

.英雄視覺__浮標--右 {
  right: 18px;
  top: 42px;
}

.英雄視覺__浮標--下 {
  right: 54px;
  bottom: 108px;
}

.英雄視覺__數據列 {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  z-index: 2;
}

.英雄視覺__數據列 div {
  padding: 12px 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(20, 18, 15, 0.08);
  box-shadow: 0 10px 24px rgba(20, 18, 15, 0.08);
}

.英雄視覺__數據列 span {
  display: block;
  margin-bottom: 6px;
  font-size: 0.82rem;
  color: var(--主色深);
  font-weight: 700;
}

.英雄視覺__數據列 strong {
  font-size: 0.98rem;
}

.焦點卡 {
  padding: 24px;
}

.焦點卡--深色 {
  background: linear-gradient(160deg, #171410, #2e261c);
  color: #fff;
}

.焦點卡--深色 p {
  color: rgba(255, 255, 255, 0.76);
}

.清單 {
  margin: 0;
  padding-left: 20px;
  line-height: 1.9;
}

.區塊 {
  padding: 70px 0;
}

.主張帶 {
  padding: 18px 0 8px;
}

.主張帶__內容 {
  padding: 26px 28px;
  border: 1px solid var(--邊框);
  border-radius: 30px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.84), rgba(255, 255, 255, 0.58)),
    radial-gradient(circle at top right, rgba(184, 137, 76, 0.12), transparent 42%);
  box-shadow: var(--陰影);
  display: grid;
  gap: 22px;
}

.主張帶 h2 {
  margin: 0;
  font-size: clamp(1.5rem, 2.6vw, 2.4rem);
  line-height: 1.35;
  max-width: 22ch;
}

.主張帶__三欄 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.主張帶__三欄 div {
  padding: 18px 18px 20px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.56);
  border: 1px solid rgba(20, 18, 15, 0.08);
}

.主張帶__三欄 strong {
  display: block;
  margin-bottom: 10px;
  font-size: 1rem;
  color: var(--主色深);
}

.主張帶__三欄 p {
  margin: 0;
  line-height: 1.8;
  color: var(--次文字);
}

.區塊--淺色 {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.08));
}

.區塊標題 {
  max-width: 760px;
  margin-bottom: 28px;
}

.區塊標題 h2 {
  font-size: clamp(1.8rem, 3vw, 3rem);
}

.區塊標題 p {
  margin: 14px 0 0;
  line-height: 1.8;
}

.區塊標題 h2::after {
  content: "";
  display: block;
  width: 84px;
  height: 3px;
  margin-top: 18px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--主色), transparent);
}

.品牌牆 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.品牌磚 {
  min-height: 110px;
  display: grid;
  place-items: center;
  padding: 20px;
  font-weight: 700;
  letter-spacing: 0.06em;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.52));
}

.服務網格 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.文章網格 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.文章卡 {
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.74)),
    radial-gradient(circle at top right, rgba(184, 137, 76, 0.12), transparent 42%);
}

.文章卡__資訊 {
  margin: 0 0 12px;
  font-size: 0.9rem;
  color: var(--主色深);
  font-weight: 700;
}

.文章卡 h3 {
  margin: 0 0 12px;
  font-size: 1.18rem;
  line-height: 1.45;
}

.文章卡 p {
  margin: 0 0 18px;
  line-height: 1.85;
  color: var(--次文字);
}

.文章卡 a {
  font-weight: 700;
  color: var(--背景深);
}

.文章卡 a:hover {
  color: var(--主色深);
}

.文章補充 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 18px;
}

.文章補充__卡 {
  padding: 22px 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.66), rgba(255, 255, 255, 0.5));
}

.文章補充__卡 strong {
  display: block;
  margin-bottom: 10px;
  font-size: 1rem;
}

.文章補充__卡 p {
  margin: 0;
  line-height: 1.85;
  color: var(--次文字);
}

.服務卡 {
  padding: 26px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.68)),
    linear-gradient(135deg, rgba(184, 137, 76, 0.06), transparent 55%);
}

.服務卡 h3 {
  margin: 0 0 12px;
  font-size: 1.25rem;
}

.服務卡 p {
  margin: 0;
  line-height: 1.85;
  color: var(--次文字);
}

.表單區 {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 18px;
  align-items: start;
}

.表單卡 {
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.7)),
    radial-gradient(circle at top left, rgba(184, 137, 76, 0.08), transparent 46%);
}

.表單列 {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
}

.表單列--全寬 {
  margin-bottom: 18px;
}

.表單列 label {
  font-weight: 700;
}

.表單列 input,
.表單列 select,
.表單列 textarea {
  width: 100%;
  border: 1px solid rgba(20, 18, 15, 0.12);
  border-radius: 16px;
  padding: 14px 16px;
  font: inherit;
  background: rgba(255, 255, 255, 0.9);
  color: var(--文字);
}

.表單列 input:focus,
.表單列 select:focus,
.表單列 textarea:focus {
  outline: 2px solid rgba(184, 137, 76, 0.34);
  border-color: rgba(184, 137, 76, 0.5);
}

.表單備註 {
  margin: 14px 0 0;
  font-size: 0.92rem;
  color: var(--次文字);
}

.聯絡資訊 {
  display: grid;
  gap: 18px;
}

.資訊卡 {
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.68)),
    linear-gradient(135deg, rgba(20, 18, 15, 0.05), transparent 55%);
}

.資訊卡--淺 {
  background:
    linear-gradient(160deg, rgba(184, 137, 76, 0.12), rgba(255, 255, 255, 0.7)),
    linear-gradient(135deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.68));
}

.頁尾 {
  padding: 24px 0 32px;
  border-top: 1px solid var(--邊框);
}

.頁尾__內容 {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: var(--次文字);
}

@keyframes 漸入 {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes 漂浮 {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@keyframes 旋轉 {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes 成長 {
  from {
    transform: scaleY(0.2);
    opacity: 0;
  }
  to {
    transform: scaleY(1);
    opacity: 1;
  }
}

@media (max-width: 960px) {
  .英雄區__內容,
  .表單區 {
    grid-template-columns: 1fr;
  }

  .數據列,
  .品牌牆,
  .服務網格,
  .文章網格,
  .文章補充 {
    grid-template-columns: 1fr 1fr;
  }

  .主張帶__三欄 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .導覽列 {
    flex-direction: column;
    align-items: stretch;
  }

  .導覽選單 {
    justify-content: flex-start;
  }

  .英雄區 {
    padding-top: 56px;
  }

  .數據列,
  .品牌牆,
  .服務網格,
  .文章網格,
  .文章補充 {
    grid-template-columns: 1fr;
  }

  .頁尾__內容 {
    flex-direction: column;
  }

  .英雄區__內容::before {
    width: 150px;
    height: 150px;
    inset: -10px 0 auto auto;
  }

  .英雄視覺__外框 {
    min-height: 280px;
    padding: 20px;
  }

  .英雄視覺__核心 {
    min-height: 228px;
  }

  .英雄視覺__數據列 {
    grid-template-columns: 1fr;
  }

  .主張帶__內容 {
    padding: 22px 18px;
  }
}
