:root {
  --paper: #FBF8F1;
  --linen: #F3EADB;
  --mist: #E8ECDF;
  --moss: #283527;
  --bark: #594533;
  --sage-deep: #4F6446;
  --sage: #7D8D68;
  --gold: #B98D4D;
  --rose: #B98B78;
  --white: #fffdf8;
  --shadow: 0 22px 64px rgba(40, 53, 39, 0.14);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--moss);
  font-family: "Noto Sans TC", "Microsoft JhengHei", "PingFang TC", system-ui, sans-serif;
  line-height: 1.78;
}

body.nav-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

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

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

.sr-only,
.skip-link {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  position: fixed;
  z-index: 99;
  top: 16px;
  left: 16px;
  width: auto;
  height: auto;
  padding: 10px 14px;
  clip: auto;
  background: var(--moss);
  color: var(--paper);
}

.site-header {
  position: fixed;
  z-index: 30;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px clamp(18px, 4vw, 52px);
  color: var(--paper);
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(251, 248, 241, 0.94);
  color: var(--moss);
  box-shadow: 0 1px 0 rgba(89, 69, 51, 0.12);
  backdrop-filter: blur(12px);
}

.brand-mark {
  display: grid;
  gap: 0;
}

.brand-mark__name {
  font-family: "Noto Serif TC", "Songti TC", serif;
  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: 0;
}

.brand-mark__sub {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.82;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 32px);
  font-size: 0.95rem;
}

.site-nav a {
  border-bottom: 1px solid transparent;
  padding: 6px 0;
}

.site-nav a:hover {
  border-color: currentColor;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid currentColor;
  border-radius: 50%;
  background: transparent;
  color: inherit;
  padding: 10px;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  height: 1px;
  margin: 5px 0;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 88vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
}

.hero__media {
  position: absolute;
  inset: 0;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(20, 28, 20, 0.74) 0%, rgba(40, 53, 39, 0.52) 42%, rgba(40, 53, 39, 0.18) 100%);
}

.hero__content {
  position: relative;
  width: min(720px, calc(100% - 36px));
  margin-left: clamp(18px, 7vw, 96px);
  padding-top: 82px;
}

.eyebrow,
.section-kicker {
  color: var(--gold);
  font-size: 0.79rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero h1 {
  margin-bottom: 18px;
  font-family: "Noto Serif TC", "Songti TC", serif;
  font-size: clamp(3.5rem, 10vw, 7.6rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.hero__lead {
  max-width: 680px;
  margin-bottom: 16px;
  font-family: "Noto Serif TC", "Songti TC", serif;
  font-size: clamp(1.55rem, 3vw, 2.55rem);
  line-height: 1.36;
}

.hero__text {
  max-width: 620px;
  color: rgba(255, 253, 248, 0.88);
  font-size: clamp(1rem, 1.5vw, 1.15rem);
}

.hero__actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 12px 20px;
  font-weight: 700;
  line-height: 1.2;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

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

.button--primary {
  background: var(--sage-deep);
  color: var(--white);
}

.button--ghost {
  border-color: rgba(255, 253, 248, 0.72);
  color: var(--white);
}

.button--secondary {
  border-color: rgba(79, 100, 70, 0.38);
  background: transparent;
  color: var(--sage-deep);
}

.intro-band {
  background: var(--moss);
  color: var(--paper);
}

.intro-band__inner {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 0;
}

.intro-band p {
  margin: 0;
  font-family: "Noto Serif TC", "Songti TC", serif;
  font-size: clamp(1.2rem, 2vw, 1.7rem);
}

.intro-band ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: rgba(251, 248, 241, 0.82);
  font-size: 0.95rem;
}

.intro-band li {
  border: 1px solid rgba(251, 248, 241, 0.22);
  border-radius: 999px;
  padding: 7px 12px;
}

.section {
  padding: clamp(74px, 9vw, 126px) 0;
}

.section__inner {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 38px;
}

.section-heading--split {
  max-width: none;
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: 48px;
  align-items: end;
}

.section-heading p:last-child {
  color: var(--bark);
}

h2 {
  font-family: "Noto Serif TC", "Songti TC", serif;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1.18;
  letter-spacing: 0;
}

h3 {
  font-family: "Noto Serif TC", "Songti TC", serif;
  font-size: 1.35rem;
  line-height: 1.35;
}

.about {
  background: var(--paper);
}

.about__grid,
.craft-story__grid,
.contact__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.82fr);
  gap: clamp(34px, 7vw, 82px);
  align-items: center;
}

.about__copy p,
.craft-story__copy p,
.contact__copy p {
  color: var(--bark);
}

blockquote {
  margin: 30px 0 0;
  border-left: 3px solid var(--gold);
  padding-left: 18px;
  color: var(--sage-deep);
  font-family: "Noto Serif TC", "Songti TC", serif;
  font-size: 1.25rem;
}

.image-frame {
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--linen);
  box-shadow: var(--shadow);
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-frame figcaption {
  padding: 12px 14px;
  color: var(--bark);
  font-size: 0.9rem;
}

.about__image {
  aspect-ratio: 3 / 4;
}

.pillars {
  background: var(--linen);
}

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

.pillar-card,
.feature-card,
.qr-panel {
  border: 1px solid rgba(89, 69, 51, 0.14);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.78);
  padding: 28px;
}

.pillar-card__icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 50%;
  background: var(--mist);
  color: var(--sage-deep);
}

.pillar-card__icon svg {
  width: 34px;
  height: 34px;
}

.pillar-card p,
.feature-card p {
  color: var(--bark);
}

.pillar-card span {
  color: var(--rose);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.craft-story {
  background: var(--paper);
}

.craft-story .image-frame {
  aspect-ratio: 4 / 5;
}

.quiet-list {
  display: grid;
  gap: 14px;
  margin: 28px 0 0;
}

.quiet-list div {
  border-top: 1px solid rgba(89, 69, 51, 0.18);
  padding-top: 14px;
}

.quiet-list dt {
  color: var(--moss);
  font-weight: 700;
}

.quiet-list dd {
  margin: 2px 0 0;
  color: var(--bark);
}

.workshops {
  background: var(--mist);
}

.feature-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 22px;
}

.wide-image {
  aspect-ratio: 16 / 7;
}

.gallery {
  background: var(--paper);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 1fr;
  gap: 18px;
}

.gallery-grid .image-frame {
  aspect-ratio: 4 / 5;
}

.gallery-grid .image-frame:nth-child(2) {
  margin-top: 42px;
}

.contact {
  background: var(--linen);
}

.contact__grid {
  grid-template-columns: minmax(0, 1fr) 320px;
}

.social-list {
  display: grid;
  gap: 8px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  color: var(--sage-deep);
  font-weight: 700;
}

.social-list a {
  border-bottom: 1px solid rgba(79, 100, 70, 0.28);
}

.qr-panel {
  display: grid;
  justify-items: center;
  align-self: stretch;
  background: var(--white);
}

.qr-panel img {
  width: min(240px, 100%);
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  margin: auto;
}

.qr-panel p {
  margin: 18px 0 0;
  color: var(--bark);
  font-weight: 700;
}

.notice {
  background: var(--moss);
  color: rgba(251, 248, 241, 0.84);
}

.notice__inner {
  width: min(900px, calc(100% - 36px));
  margin: 0 auto;
  padding: 24px 0;
  text-align: center;
  font-size: 0.92rem;
}

.notice p {
  margin: 0;
}

.site-footer {
  background: #1f2a1f;
  color: rgba(251, 248, 241, 0.78);
}

.site-footer__inner {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 24px 0;
  font-size: 0.92rem;
}

.site-footer p {
  margin: 0;
}

@media (max-width: 900px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: 78px 18px auto 18px;
    display: none;
    border: 1px solid rgba(89, 69, 51, 0.14);
    border-radius: 8px;
    background: var(--paper);
    color: var(--moss);
    padding: 18px;
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: grid;
    gap: 10px;
  }

  .hero {
    min-height: 82vh;
  }

  .hero__shade {
    background: linear-gradient(180deg, rgba(24, 32, 23, 0.72) 0%, rgba(40, 53, 39, 0.56) 58%, rgba(40, 53, 39, 0.28) 100%);
  }

  .hero__content {
    margin: 0 auto;
    padding-top: 120px;
  }

  .intro-band__inner,
  .section-heading--split,
  .about__grid,
  .craft-story__grid,
  .contact__grid {
    grid-template-columns: 1fr;
  }

  .intro-band__inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .pillar-grid,
  .feature-row,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid .image-frame:nth-child(2) {
    margin-top: 0;
  }

  .wide-image {
    aspect-ratio: 4 / 3;
  }
}

@media (max-width: 560px) {
  .site-header {
    padding: 14px 18px;
  }

  .brand-mark__sub {
    font-size: 0.66rem;
  }

  .hero {
    min-height: 80vh;
  }

  .hero__media img {
    object-position: center;
  }

  .hero h1 {
    font-size: clamp(3.2rem, 16vw, 4.8rem);
  }

  .hero__lead {
    font-size: 1.45rem;
  }

  .button {
    width: 100%;
  }

  .section {
    padding: 66px 0;
  }

  .pillar-card,
  .feature-card,
  .qr-panel {
    padding: 22px;
  }

  .site-footer__inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* 後台上傳的 Logo */
.brand-logo {
  display: block;
  width: auto;
  max-height: 46px;
}
