/*==========================
  Brand Story Page
==========================*/



/* Intro */
.brandIntro{
  background:var(--cream);
}
.brandIntroGrid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:76px;
  align-items:center;
}
.brandIntroTxt h2{
  margin:14px 0 24px;
  color:var(--main);
  font-size:38px;
  line-height:1.45;
  font-weight:600;
}
.brandIntroTxt p{
  margin:0 0 18px;
  line-height:2.05;
}
.brandIntroImg{
  position:relative;
  min-height:610px;
}
.brandIntroImg .mainImg{
  width:78%;
  margin-left:auto;
  padding:14px;
  border:1px solid rgba(201,161,90,.65);
}
.brandIntroImg .mainImg img{
  width:100%;
  aspect-ratio:4/5;
  object-fit:cover;
}
.brandIntroImg .subImg{
  position:absolute;
  left:0;
  bottom:20px;
  width:45%;
  padding:12px;
  background:var(--cream);
  border:1px solid var(--gold);
  box-shadow:0 22px 45px rgba(49,28,16,.18);
}
.brandIntroImg .subImg img{
  width:100%;
  aspect-ratio:1/1;
  object-fit:cover;
}

/* History */
.brandHistory{
  background:#efe3d2;
}
.historyList{
  position:relative;
  max-width:920px;
  margin:auto;
}
.historyList:before{
  content:"";
  position:absolute;
  left:50%;
  top:0;
  bottom:0;
  width:1px;
  background:rgba(201,161,90,.45);
}
.historyItem{
  position:relative;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:70px;
  margin-bottom:64px;
}
.historyItem:last-child{
  margin-bottom:0;
}
.historyItem:before{
  content:"";
  position:absolute;
  left:50%;
  top:12px;
  width:15px;
  height:15px;
  border-radius:50%;
  background:var(--gold);
  box-shadow:0 0 0 10px rgba(201,161,90,.16);
  transform:translateX(-50%);
}
.historyItem:nth-child(even) .year{
  grid-column:2;
  text-align:left;
}
.historyItem:nth-child(even) .txt{
  grid-column:1;
  grid-row:1;
  text-align:right;
}
.historyItem .year{
  color:var(--gold);
  font-size:50px;
  line-height:1;
  letter-spacing:.08em;
  text-align:right;
}
.historyItem .txt{
  padding-top:2px;
}
.historyItem h3{
  margin:0 0 14px;
  color:var(--main);
  font-size:24px;
  font-weight:600;
}
.historyItem p{
  margin:0;
  line-height:1.9;
}

/* Quote */
.brandQuote{
  position:relative;
  padding:140px 0;
  text-align:center;
  color:#fff;
  overflow:hidden;
  background:
    linear-gradient(rgba(18,8,6,.72),rgba(18,8,6,.86)),
    url("../images/aboutbg.jpg") center/cover fixed no-repeat;
}
.brandQuote:before{
  content:"";
  position:absolute;
  inset:26px;
  border:1px solid rgba(201,161,90,.32);
  pointer-events:none;
}
.brandQuote span{
  display:block;
  color:var(--gold2);
  letter-spacing:.28em;
  font-size:13px;
}
.brandQuote h2{
  margin:24px 0 20px;
  font-size:50px;
  line-height:1.42;
  font-weight:500;
}
.brandQuote p{
  margin:0;
  color:#f1dfc8;
  line-height:1.9;
  font-size:17px;
}

/* Spirit */
.brandSpirit{
  background:var(--cream);
}
.spiritGrid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:24px;
}
.spiritCard{
  position:relative;
  padding:40px 26px;
  background:#fff;
  border:1px solid #ead9bd;
  text-align:center;
  transition:.35s;
}
.spiritCard:before{
  content:"";
  position:absolute;
  inset:14px;
  border:1px solid rgba(201,161,90,0);
  transition:.35s;
  pointer-events:none;
}
.spiritCard:hover{
  transform:translateY(-8px);
  box-shadow:0 24px 50px rgba(53,30,18,.12);
}
.spiritCard:hover:before{
  border-color:rgba(201,161,90,.45);
}
.spiritCard .icon{
  width:76px;
  height:76px;
  margin:0 auto 22px;
  display:flex;
  align-items:center;
  justify-content:center;
}
.spiritCard svg{
  width:74px;
  height:74px;
}
.spiritCard svg path,
.spiritCard svg circle{
  fill:none;
  stroke:var(--gold);
  stroke-width:3;
  stroke-linecap:round;
  stroke-linejoin:round;
}
.spiritCard h3{
  margin:0 0 14px;
  color:var(--main);
  font-size:22px;
}
.spiritCard p{
  margin:0;
  line-height:1.85;
}

/* Showroom */
.showroom{
  background:#1a0d08;
  color:#fff;
}
.showroomGrid{
  display:grid;
  grid-template-columns:1.08fr .92fr;
  gap:72px;
  align-items:center;
}
.showroomImg{
  position:relative;
}
.showroomImg:before{
  content:"";
  position:absolute;
  left:28px;
  top:28px;
  right:-28px;
  bottom:-28px;
  border:1px solid rgba(201,161,90,.62);
}
.showroomImg img{
  position:relative;
  width:100%;
  aspect-ratio:5/4;
  object-fit:cover;
}
.showroomTxt h2{
  margin:14px 0 24px;
  color:#fff;
  font-size:38px;
  line-height:1.45;
  font-weight:600;
}
.showroomTxt p{
  margin:0 0 18px;
  color:#dfcdb8;
  line-height:2;
}
.showroomTxt .btn{
  margin-top:20px;
}

/* Brand Value */
.brandValue{
  background:var(--cream);
}
.brandValueGrid{
  display:grid;
  grid-template-columns:.82fr 1.18fr;
  gap:76px;
  align-items:center;
}
.valueBig{
  min-height:430px;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
  color:#fff;
  background:
    linear-gradient(rgba(18,8,6,.78),rgba(18,8,6,.88)),
    url("../images/about04.jpg") center/cover no-repeat;
  border:1px solid rgba(201,161,90,.5);
}
.valueBig span{
  color:var(--gold2);
  letter-spacing:.22em;
  font-size:13px;
}
.valueBig strong{
  display:block;
  margin:22px 0 0;
  color:var(--gold2);
  font-size:96px;
  line-height:1;
  font-weight:400;
}
.valueBig p{
  margin:10px 0 0;
  color:#ecdcc4;
  font-size:20px;
  letter-spacing:.16em;
}
.valueTxt h2{
  margin:0 0 22px;
  color:var(--main);
  font-size:38px;
  line-height:1.45;
  font-weight:600;
}
.valueTxt p{
  margin:0;
  line-height:2;
}
.advantageList{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px;
  margin-top:34px;
}
.advantageList div{
  position:relative;
  padding:18px 18px 18px 46px;
  background:#fff;
  border:1px solid #ead9bd;
  color:var(--main);
}
.advantageList div:before{
  content:"✓";
  position:absolute;
  left:18px;
  top:18px;
  color:var(--gold);
  font-weight:bold;
}

/* CTA */
.aboutCta{
  padding:110px 0;
  text-align:center;
  color:#fff;
  background:
    linear-gradient(rgba(18,8,6,.82),rgba(18,8,6,.88)),
    url("../images/cta.jpg") center/cover no-repeat;
}
.aboutCta span{
  display:block;
  color:var(--gold2);
  letter-spacing:.24em;
  font-size:13px;
}
.aboutCta h2{
  margin:18px 0;
  font-size:42px;
  line-height:1.45;
  font-weight:500;
}
.aboutCta p{
  margin:0;
  color:#f0dfc7;
  line-height:1.9;
}

/*==========================
  RWD
==========================*/

@media(max-width:1100px){
  .brandIntroGrid,
  .showroomGrid,
  .brandValueGrid{
    gap:54px;
  }
  .spiritGrid{
    grid-template-columns:repeat(2,1fr);
  }
}

@media(max-width:920px){

  .brandIntroGrid,
  .showroomGrid,
  .brandValueGrid{
    grid-template-columns:1fr;
  }
  .brandIntroImg{
    min-height:auto;
    order:-1;
  }
  .brandIntroImg .mainImg{
    width:82%;
  }
  .brandIntroImg .subImg{
    position:relative;
    width:42%;
    margin:-80px 0 0 0;
    bottom:auto;
  }
  .historyList:before{
    left:0;
  }
  .historyItem,
  .historyItem:nth-child(even){
    display:block;
    padding-left:38px;
    margin-bottom:46px;
  }
  .historyItem:before{
    left:0;
    transform:none;
  }
  .historyItem .year,
  .historyItem:nth-child(even) .year,
  .historyItem:nth-child(even) .txt{
    text-align:left;
  }
  .historyItem .year{
    margin-bottom:18px;
    font-size:42px;
  }
  .showroomImg:before{
    left:18px;
    top:18px;
    right:-18px;
    bottom:-18px;
  }
  .valueBig{
    min-height:340px;
  }
}

@media(max-width:720px){
  .brandIntroTxt h2,
  .showroomTxt h2,
  .valueTxt h2{
    font-size:30px;
  }
  .brandQuote{
    padding:96px 0;
    background-attachment:scroll;
  }
  .brandQuote:before{
    inset:16px;
  }
  .brandQuote h2{
    font-size:34px;
  }
  .spiritGrid,
  .advantageList{
    grid-template-columns:1fr;
  }
  .showroomImg:before{
    display:none;
  }
  .aboutCta{
    padding:86px 0;
  }
  .aboutCta h2{
    font-size:32px;
  }
}

@media(max-width:480px){
  .brandIntroImg .mainImg{
    width:100%;
  }
  .brandIntroImg .subImg{
    width:76%;
    margin:-54px 0 0 auto;
  }
  .historyItem{
    padding-left:30px;
  }
  .historyItem .year{
    font-size:36px;
  }
  .spiritCard{
    padding:34px 22px;
  }
  .valueBig strong{
    font-size:74px;
  }
}