:root {
  --gold: #C5A36A;
  --goldDark: #A88349;
  --goldLight: #D8BE91;
  --brown: #3D352B;
  --brown2: #5C5145;
  --bg: #F8F5F0;
  --paper: #FFFDF8;
  --line: #E6DAC8;
  --text: #6C6257;
  --container: 1280px;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0
}
html {
  scroll-behavior: smooth
}
body {
  font-family: "Noto Sans TC", "Microsoft JhengHei", sans-serif;
  background: var(--bg);
  color: var(--brown);
  line-height: 1.85;
  letter-spacing: .03em
}
a {
  text-decoration: none;
  color: inherit
}
img {
  display: block;
  width: 100%;
  height: auto
}
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 36px
}
.sectionSpace {
  padding: 128px 0
}
.siteHeader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  /*background: rgba(248, 245, 240, .82);*/
  background: rgba(248, 245, 240, 1);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(197, 163, 106, .18);
  transition: .35s
}
.siteHeader.scrolled {
  /*background: rgba(248, 245, 240, .96);*/
  background: rgba(248, 245, 240, 1);
  box-shadow: 0 12px 36px rgba(61, 53, 43, .08)
}
.headerInner {
  height: 88px;
  max-width: 1440px;
  margin: auto;
  padding: 0 42px;
  display: flex;
  align-items: center;
  justify-content: space-between
}
.brand {
  width: 250px;
  display: block
}
.mainNav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 15px;
  color: var(--brown)
}
.mainNav a {
  position: relative;
  white-space: nowrap;
  transition: .25s
}
.mainNav a:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: .25s
}
.mainNav a:hover {
  color: var(--goldDark)
}
.mainNav a:hover:after {
  width: 100%
}


.mainNav a.active {
  color: var(--goldDark)
}
.mainNav a.active:after {
  width: 100%
}


.navContact {
  border: 1px solid var(--gold);
  padding: 8px 18px;
  color: var(--goldDark)
}
.navContact:after {
  display: none
}
.menuToggle {
  display: none;
  background: none;
  border: 0;
  width: 44px;
  height: 44px;
  cursor: pointer
}
.menuToggle span {
  display: block;
  width: 28px;
  height: 1px;
  background: var(--brown);
  margin: 7px auto;
  transition: .3s
}





.eyebrow, .sectionTitle span {
  display: block;
  color: var(--goldDark);
  font-size: 13px;
  letter-spacing: .28em;
  text-transform: uppercase;
  margin-bottom: 18px
}
.heroPanel h1 {
  font-size: clamp(42px, 5vw, 76px);
  font-weight: 300;
  line-height: 1.18;
  color: var(--brown);
  margin-bottom: 28px;
  letter-spacing: .05em
}
.heroDesc {
  font-size: 18px;
  color: var(--text);
  max-width: 560px;
  margin-bottom: 42px
}
.heroActions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap
}
.btnPrimary, .btnOutline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 168px;
  padding: 14px 30px;
  border: 1px solid var(--gold);
  transition: .3s;
  font-size: 15px
}
.btnPrimary {
  background: var(--gold);
  color: #fff
}
.btnPrimary:hover {
  background: var(--goldDark);
  border-color: var(--goldDark)
}
.btnOutline {
  color: var(--goldDark);
  background: rgba(255, 255, 255, .36)
}
.btnOutline:hover {
  background: var(--gold);
  color: #fff
}
.scrollHint {
  position: absolute;
  left: 50%;
  bottom: 36px;
  transform: translateX(-50%);
  color: var(--goldDark);
  font-size: 12px;
  letter-spacing: .3em;
  writing-mode: vertical-rl
}
.sectionTitle h2 {
  font-size: clamp(32px, 3.5vw, 52px);
  font-weight: 300;
  line-height: 1.35;
  color: var(--brown);
  letter-spacing: .05em
}
.sectionTitle p {
  color: var(--text);
  margin-top: 20px;
  font-size: 17px
}
.centerTitle {
  text-align: center;
  margin-bottom: 56px
}
.introGrid {
  display: grid;
  grid-template-columns: 40% 1fr;
  gap: 110px;
  align-items: start
}
.stickyTitle {
  position: sticky;
  top: 130px
}
.introContent {
  font-size: 19px;
  color: var(--text)
}
.introContent p+p {
  margin-top: 28px
}
.introQuote {
  font-size: 34px;
  line-height: 1.35;
  color: var(--goldDark);
  font-family: Georgia, serif;
  margin-top: 48px;
  border-left: 1px solid var(--gold);
  padding-left: 32px
}
.greenSection {
  background: #fff
}
.greenGrid {
  display: grid;
  grid-template-columns: 52% 1fr;
  gap: 90px;
  align-items: center
}
.greenImage {
  position: relative
}
.greenImage:before {
  content: "";
  position: absolute;
  left: -28px;
  top: -28px;
  width: 55%;
  height: 55%;
  border: 1px solid var(--gold);
  z-index: 0
}
.greenImage img {
  position: relative;
  z-index: 1;
  aspect-ratio: 4/3;
  object-fit: cover
}
.greenText p {
  font-size: 18px;
  color: var(--text);
  margin: 28px 0 34px
}
.greenList {
  border-top: 1px solid var(--line)
}
.greenList div {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line)
}
.greenList strong {
  color: var(--gold);
  font-weight: 400
}
.greenList span {
  color: var(--brown2)
}
.textLink {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--goldDark);
  margin-top: 30px
}
.textLink:after {
  content: "";
  width: 46px;
  height: 1px;
  background: var(--gold);
  transition: .3s
}
.textLink:hover:after {
  width: 72px
}
.worksHead {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 56px
}
.worksLayout {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 24px
}
.workItem {
  position: relative;
  display: block;
  overflow: hidden;
  background: #000
}
.workLarge {
  grid-row: 1/3
}
.workItem img {
  height: 100%;
  min-height: 330px;
  object-fit: cover;
  opacity: .86;
  transition: 1s
}
.workLarge img {
  min-height: 720px
}
.workItem:hover img {
  transform: scale(1.06);
  opacity: .66
}
.workInfo {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 38px;
  color: #fff;
  background: linear-gradient(transparent, rgba(0, 0, 0, .76))
}
.workInfo p {
  color: var(--goldLight);
  font-size: 14px;
  letter-spacing: .12em
}
.workInfo h3 {
  font-size: 30px;
  font-weight: 300;
  margin: 6px 0 18px
}
.workInfo ul {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  list-style: none;
  font-size: 14px;
  color: #eee
}
.serviceSection {
  background: var(--brown);
  color: #fff
}
.serviceSection .sectionTitle h2 {
  color: #fff
}
.serviceSection .sectionTitle p {
  color: #d7d0c5
}
.serviceGrid {
  display: grid;
  grid-template-columns: 42% 1fr;
  gap: 90px;
  align-items: start
}
.serviceList {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid rgba(216, 190, 145, .3)
}
.serviceList a {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 26px 10px;
  border-bottom: 1px solid rgba(216, 190, 145, .3);
  color: #fff;
  font-size: 22px;
  transition: .3s
}
.serviceList a:hover {
  color: var(--goldLight);
  padding-left: 22px
}
.serviceList span {
  font-size: 13px;
  color: var(--goldLight);
  letter-spacing: .18em
}
.processTrack {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line)
}
.processItem {
  min-height: 230px;
  padding: 28px 20px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, .45)
}
.processItem span {
  color: var(--goldDark);
  font-size: 13px;
  letter-spacing: .18em
}
.processItem h3 {
  font-weight: 400;
  font-size: 22px;
  margin: 18px 0 12px
}
.processItem p {
  font-size: 15px;
  color: var(--text)
}
.designerSection {
  background: #fff
}
.designerGrid {
  display: grid;
  grid-template-columns: 42% 1fr;
  gap: 90px;
  align-items: center
}
.designerPhoto img {
  aspect-ratio: 3/4;
  object-fit: cover
}
.designerText p {
  font-size: 18px;
  color: var(--text);
  margin: 28px 0
}
.licenseGrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px
}
.licenseGrid span {
  padding: 13px 16px;
  border: 1px solid var(--line);
  color: var(--brown2);
  background: var(--bg);
  font-size: 14px
}
.articleGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px
}
.articleCard {
  background: #fff;
  display: block;
  border-bottom: 1px solid var(--gold);
  transition: .3s
}
.articleCard:hover {
  transform: translateY(-8px)
}
.articleCard img {
  aspect-ratio: 4/3;
  object-fit: cover
}
.articleCard span {
  display: block;
  color: var(--goldDark);
  font-size: 13px;
  letter-spacing: .16em;
  margin: 24px 24px 10px
}
.articleCard h3 {
  font-size: 22px;
  font-weight: 400;
  line-height: 1.55;
  padding: 0 24px 30px
}
.ctaSection {
  padding: 112px 0;
  background: linear-gradient(rgba(61, 53, 43, .8), rgba(61, 53, 43, .8)), url("../images/home/cta.jpg") center/cover no-repeat;
  color: #fff;
  text-align: center
}
.ctaBox {
  max-width: 980px
}
.ctaBox p {
  color: var(--goldLight);
  letter-spacing: .28em;
  text-transform: uppercase;
  margin-bottom: 16px
}
.ctaBox h2 {
  font-size: clamp(34px, 4vw, 56px);
  font-weight: 300;
  line-height: 1.35
}
.ctaBox span {
  display: block;
  color: #eee;
  margin: 22px auto 38px;
  max-width: 720px
}
.ctaActions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap
}
.ctaActions a {
  border: 1px solid rgba(216, 190, 145, .65);
  padding: 12px 24px;
  color: #fff
}
.ctaActions a:hover {
  background: var(--gold);
  border-color: var(--gold)
}
.footer {
  background: #27221c;
  color: #d4c9ba;
  padding: 70px 0 26px
}
.footerGrid {
  display: grid;
  grid-template-columns: 1.3fr .7fr 1fr;
  gap: 70px
}
.footer img {
  width: 250px;
  padding: 8px;
  margin-bottom: 22px
}
.footer h3 {
  color: #fff;
  font-weight: 400;
  margin-bottom: 18px
}
.footer a, .footer p {
  display: block;
  color: #d4c9ba;
  margin: 7px 0
}
.copyright {
  text-align: center;
  border-top: 1px solid rgba(216, 190, 145, .18);
  margin-top: 46px;
  padding-top: 24px;
  color: #9d9283;
  font-size: 13px
}
.reveal {
  opacity: 0;
  transform: translateY(42px);
  transition: opacity .9s ease, transform .9s ease
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0)
}
@media(max-width:1180px) {
  .mainNav {
    gap: 18px;
    font-size: 14px
  }
  .brand {
    width: 220px
  }
  .processTrack {
    grid-template-columns: repeat(4, 1fr)
  }
}
@media(max-width:991px) {
  .headerInner {
    height: 78px;
    padding: 0 24px
  }
  .brand {
    width: 210px
  }
  .menuToggle {
    display: block;
    z-index: 102
  }
  .menuToggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(38deg)
  }
  .menuToggle.active span:nth-child(2) {
    opacity: 0
  }
  .menuToggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-38deg)
  }
  .mainNav {
    position: fixed;
    top: 78px;
    right: -100%;
    width: min(420px, 86vw);
    height: calc(100vh - 78px);
    background: var(--paper);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 30px;
    border-left: 1px solid var(--line);
    transition: .35s;
    box-shadow: -22px 20px 50px rgba(61, 53, 43, .12)
  }
  .mainNav.open {
    right: 0
  }
  .mainNav a {
    width: 100%;
    padding: 15px 0;
    border-bottom: 1px solid var(--line)
  }
  .navContact {
    border: 0;
    color: var(--goldDark);
    padding: 15px 0
  }


  .scrollHint {
    display: none
  }
  .introGrid, .greenGrid, .serviceGrid, .designerGrid {
    grid-template-columns: 1fr;
    gap: 56px
  }
  .stickyTitle {
    position: static
  }
  .worksLayout {
    grid-template-columns: 1fr
  }
  .workLarge {
    grid-row: auto
  }
  .workLarge img, .workItem img {
    min-height: 430px
  }
  .processTrack {
    grid-template-columns: repeat(2, 1fr)
  }
  .articleGrid {
    grid-template-columns: 1fr 1fr
  }
  .footerGrid {
    grid-template-columns: 1fr 1fr
  }
}
@media(max-width:767px) {
  .container {
    padding: 0 22px
  }
  .sectionSpace {
    padding: 82px 0
  }
  .heroPanel {
    padding: 112px 24px 54px
  }
  .heroPanel h1 {
    font-size: 38px
  }
  .heroDesc {
    font-size: 16px
  }
  .heroActions {
    display: block
  }
  .btnPrimary, .btnOutline {
    width: 100%;
    margin-top: 12px
  }
  .sectionTitle h2 {
    font-size: 32px
  }
  .introContent {
    font-size: 17px
  }
  .introQuote {
    font-size: 26px;
    padding-left: 20px
  }
  .greenImage:before {
    display: none
  }
  .greenList div {
    grid-template-columns: 50px 1fr
  }
  .worksHead {
    display: block
  }
  .worksHead .textLink {
    margin-top: 18px
  }
  .workInfo {
    padding: 26px
  }
  .workInfo h3 {
    font-size: 24px
  }
  .serviceList {
    grid-template-columns: 1fr
  }
  .processTrack {
    grid-template-columns: 1fr
  }
  .processItem {
    min-height: auto
  }
  .licenseGrid, .articleGrid, .footerGrid {
    grid-template-columns: 1fr
  }
  .designerPhoto img {
    /*aspect-ratio: 4/3*/
  }
  .ctaActions {
    display: block
  }
  .ctaActions a {
    display: block;
    margin-top: 12px
  }
  .footer img {
    width: 220px
  }
}






/*banner*/

.heroContent{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    z-index:5;

    width:90%;
    max-width:800px;

    text-align:center;
}

.heroSub{
    display:block;
    margin-bottom:20px;

    color:#D8BE91;

    font-size:12px;

    letter-spacing:6px;

    text-transform:uppercase;
}

.heroContent h1{
    margin:0;

    font-size:56px;

    font-weight:300;

    letter-spacing:2px;

    line-height:1.2;

    color:#fff;
}

.heroContent p{
    margin:24px auto 0;

    max-width:600px;

    font-size:17px;

    line-height:2;

    color:rgba(255,255,255,.88);
}

.heroLink{
    display:inline-block;

    margin-top:40px;

    padding-bottom:8px;

    border-bottom:1px solid #C5A36A;

    color:#C5A36A;

    font-size:14px;

    letter-spacing:3px;

    transition:.3s;
}

.heroLink:hover{
    color:#fff;
    border-color:#fff;
}


.heroSection{
    position:relative;
    width:100%;
    height:100vh;
    min-height:800px;
    overflow:hidden;
}

.heroBg{
    position:absolute;
    inset:0;
    z-index:1;
}

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

.heroOverlay{
    position:absolute;
    inset:0;
    z-index:2;

    background:
    linear-gradient(
        rgba(0,0,0,.2),
        rgba(0,0,0,.2)
    );
}



@media (max-width:991px){

.heroSection{
    min-height:700px;
}

.heroContent{
    max-width:600px;
}

.heroContent h1{
    font-size:46px;
}

.heroContent p{
    font-size:15px;
}

}

@media (max-width:767px){

.heroSection{
    height:auto;
    min-height:480px;
}

.heroContent{
  top:55%;
    width:calc(100% - 40px);
}

.heroSub{
    font-size:10px;
    letter-spacing:3px;
    margin-bottom:14px;
}

.heroContent h1{
    font-size:27px;
    line-height:1.3;
    letter-spacing:1px;
}

.heroContent p{
    margin-top:16px;

    font-size:16px;

    line-height:1.8;

    max-width:320px;
}

.heroLink{
    margin-top:24px;

    font-size:12px;

    letter-spacing:2px;
}

}

/*banner end*/



/*inbanner*/

.inBanner{
  position:relative;
  height:600px;
  overflow:hidden;
  background:#1f1b16;
  maegin-top: 80px;
}

.bannerBg,
.bannerBg img{
  width:100%;
  height:100%;
}

.bannerBg img{
  object-fit:cover;
}

.bannerOverlay{
  position:absolute;
  inset:0;
  z-index:2;
  background:rgba(0,0,0,.36);
}


.bannerContent{
    position:absolute;
    inset:0;

    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;

    padding-top:80px;

    z-index:3;
  color:#fff;
}

.bannerContent span{
  display:block;
  margin-bottom:14px;
  color:#D8BE91;
  font-size:12px;
  letter-spacing:5px;
}

.bannerContent h1{
  margin:0;
  font-size:52px;
  font-weight:300;
  letter-spacing:4px;
}

.bannerContent p{
  margin:16px 0 0;
  color:rgba(255,255,255,.82);
  font-size:16px;
  letter-spacing:2px;
}


@media(max-width:991px){

   .inBanner{
    height:420px;
  }

  .bannerContent h1{
    font-size:42px;
  }

}


@media(max-width:767px){

  .inBanner{
    height:320px;
  }

  .bannerContent span{
    font-size:10px;
    letter-spacing:3px;
    margin-bottom:10px;
  }

  .bannerContent h1{
    font-size:32px;
    letter-spacing:2px;
  }

  .bannerContent p{
    font-size:14px;
    letter-spacing:1px;
  }

}

/*inbanner end*/