@charset "UTF-8";

/* =========================================================
   ABOUT HISTORY PAGE / CREATIVE FISHING GEAR VERSION
========================================================= */

.about-history-page{
  background:linear-gradient(to bottom, #f4f3ef 0%, #ffffff 22%, #f7f6f2 100%);
  color:#111;
}

.about-hero{
  min-height:94vh;
  position:relative;
  isolation:isolate;
  overflow:hidden;
}

.about-hero::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(to bottom, rgba(0,0,0,.18), rgba(0,0,0,.58)),
    radial-gradient(circle at 50% 30%, rgba(255,255,255,.12), transparent 44%),
    linear-gradient(to top, rgba(0,0,0,.26), rgba(0,0,0,0)),
    url("../img/About_YARIE_Hook/hook_detail_eye.jpg") center 38% / cover no-repeat;
  z-index:-1;
  transform:scale(1.03);
  transform-origin:center center;
  animation:about-hero-bg-drift 14s ease-in-out infinite alternate;
}

.about-hero::after{
  content:"";
  position:absolute;
  left:50%;
  bottom:34px;
  width:1px;
  height:72px;
  background:linear-gradient(to bottom, rgba(255,255,255,.85), rgba(255,255,255,0));
  transform:translateX(-50%);
  opacity:.7;
}

.about-hero__inner{
  width:min(940px, calc(100% - 40px));
  margin:0 auto;
  text-align:center;
}

.about-hero__eyebrow{
  margin:0 0 22px;
  color:#fff;
  opacity:.82;
  font-size:12px;
  letter-spacing:.34em;
  text-transform:uppercase;
}

.fixed-background .History_title,
.fixed-background .History_titile{
  font-size:clamp(46px, 6vw, 96px);
  line-height:.96;
  letter-spacing:.14em;
  font-weight:700;
  text-transform:uppercase;
  color:#fff;
  text-shadow:0 16px 42px rgba(0,0,0,.34);
  margin:0;
}

.fixed-background .History_title::after,
.fixed-background .History_titile::after{
  content:"";
  display:block;
  width:72px;
  height:1px;
  margin:22px auto 0;
  background:rgba(255,255,255,.92);
  transform-origin:center;
}

.about-hero__lead{
  width:min(640px, 100%);
  margin:28px auto 0;
  color:rgba(255,255,255,.98);
  font-size:clamp(17px, 1.7vw, 22px);
  line-height:1.9;
  letter-spacing:.08em;
}

.about-hero__sublead{
  width:min(700px, 100%);
  margin:18px auto 0;
  color:rgba(255,255,255,.80);
  font-size:14px;
  line-height:2;
  letter-spacing:.04em;
}

.about-hero__scroll{
  display:inline-block;
  margin-top:42px;
  color:rgba(255,255,255,.68);
  font-size:11px;
  letter-spacing:.30em;
}

.about-hero__scroll::after{
  content:"";
  display:block;
  width:1px;
  height:34px;
  margin:12px auto 0;
  background:linear-gradient(to bottom, rgba(255,255,255,.92), rgba(255,255,255,0));
}

.about-history-page.is-hero-animating .about-hero__eyebrow{
  opacity:0;
  transform:translateY(16px);
  animation:about-hero-copy-in .9s cubic-bezier(.22,1,.36,1) .08s forwards;
}

.about-history-page.is-hero-animating .fixed-background .History_title,
.about-history-page.is-hero-animating .fixed-background .History_titile{
  opacity:0;
  transform:translateY(22px);
  animation:about-hero-copy-in 1.1s cubic-bezier(.22,1,.36,1) .22s forwards;
}

.about-history-page.is-hero-animating .fixed-background .History_title::after,
.about-history-page.is-hero-animating .fixed-background .History_titile::after{
  transform:scaleX(0);
  animation:about-hero-rule-in .9s cubic-bezier(.22,1,.36,1) .7s forwards;
}

.about-history-page.is-hero-animating .about-hero__lead{
  opacity:0;
  transform:translateY(18px);
  animation:about-hero-copy-in .95s cubic-bezier(.22,1,.36,1) .42s forwards;
}

.about-history-page.is-hero-animating .about-hero__sublead{
  opacity:0;
  transform:translateY(18px);
  animation:about-hero-copy-in .95s cubic-bezier(.22,1,.36,1) .58s forwards;
}

.about-history-page.is-hero-animating .about-hero__scroll{
  opacity:0;
  transform:translateY(14px);
  animation:
    about-hero-copy-in .85s cubic-bezier(.22,1,.36,1) .85s forwards,
    about-hero-scroll-bob 2.4s ease-in-out 1.9s infinite;
}

.about-history-page.is-hero-animating .about-hero__scroll::after{
  animation:about-hero-scroll-line 2.4s ease-in-out 1.9s infinite;
}

@keyframes about-hero-bg-drift{
  from{
    transform:scale(1.03) translate3d(0, 0, 0);
  }
  to{
    transform:scale(1.08) translate3d(0, -8px, 0);
  }
}

@keyframes about-hero-copy-in{
  from{
    opacity:0;
    transform:translateY(18px);
  }
  to{
    opacity:1;
    transform:translateY(0);
  }
}

@keyframes about-hero-rule-in{
  from{
    transform:scaleX(0);
    opacity:.35;
  }
  to{
    transform:scaleX(1);
    opacity:1;
  }
}

@keyframes about-hero-scroll-bob{
  0%, 100%{
    transform:translateY(0);
  }
  50%{
    transform:translateY(6px);
  }
}

@keyframes about-hero-scroll-line{
  0%, 100%{
    opacity:.45;
    transform:scaleY(.82);
    transform-origin:top;
  }
  50%{
    opacity:1;
    transform:scaleY(1);
    transform-origin:top;
  }
}

@media (prefers-reduced-motion: reduce){
  .about-hero::before,
  .about-hero__eyebrow,
  .fixed-background .History_title,
  .fixed-background .History_titile,
  .fixed-background .History_title::after,
  .fixed-background .History_titile::after,
  .about-hero__lead,
  .about-hero__sublead,
  .about-hero__scroll,
  .about-hero__scroll::after{
    animation:none;
    opacity:1;
    transform:none;
  }
}

/* Creative section */
.creative-gear{
  padding:118px 20px 82px;
  background:
    radial-gradient(circle at top center, rgba(0,0,0,.03), transparent 42%),
    linear-gradient(to bottom, rgba(255,255,255,1), rgba(248,247,243,1));
  position:relative;
}

.creative-gear::before{
  content:"";
  position:absolute;
  inset:34px 20px auto;
  height:1px;
  background:linear-gradient(to right, rgba(155,133,110,0), rgba(155,133,110,.42), rgba(155,133,110,0));
}

.creative-gear__inner{
  width:min(1140px, 100%);
  margin:0 auto;
  text-align:left;
}

.creative-gear__label{
  margin:0 0 14px;
  font-family:var(--font-display);
  font-size:.72rem;
  font-weight:600;
  letter-spacing:.18em;
  color:#9b856e;
  text-transform:uppercase;
  text-align:center;
}

.creative-gear__title{
  margin:0 0 24px;
  font-family:var(--font-display);
  font-size:clamp(30px, 3.2vw, 46px);
  font-weight:700;
  line-height:1.18;
  letter-spacing:.02em;
  color:#17130f;
  text-align:center;
}

.creative-gear__lead{
  width:min(820px, 100%);
  margin:0 auto 54px;
  line-height:2;
  font-size:.95rem;
  color:#6b6158;
  text-align:center;
  text-wrap:pretty;
}

.creative-gear__lead strong{
  font-weight:700;
}

.creative-gear__grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:18px;
  align-items:stretch;
}

.creative-item{
  position:relative;
  min-height:100%;
  padding:28px 22px 24px;
  border:1px solid rgba(0,0,0,.08);
  border-radius:20px;
  background:linear-gradient(180deg, rgba(255,255,255,.96), rgba(249,247,242,.92));
  box-shadow:0 12px 28px rgba(0,0,0,.05);
  transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.creative-item:hover{
  transform:translateY(-3px);
  box-shadow:0 16px 30px rgba(0,0,0,.08);
  border-color:rgba(0,0,0,.14);
}

.creative-item::before{
  content:"";
  position:absolute;
  top:0;
  left:24px;
  right:24px;
  height:1px;
  background:linear-gradient(to right, rgba(0,0,0,0), rgba(0,0,0,.16), rgba(0,0,0,0));
}

.creative-item__year{
  display:block;
  margin:0 0 12px;
  padding:0;
  border-radius:0;
  background:none;
  color:rgba(0,0,0,.48);
  font-family:inherit;
  font-size:11px;
  font-weight:400;
  letter-spacing:.22em;
  text-transform:uppercase;
}

.creative-item__title{
  margin:0 0 10px;
  font-size:18px;
  font-weight:700;
  line-height:1.5;
  letter-spacing:.02em;
  color:#111;
}

.creative-item__text{
  margin:0;
  color:#444;
  line-height:1.95;
  font-size:13px;
}

.brand-philosophy{
  padding:86px 20px 44px;
}

.brand-philosophy__inner{
  width:min(920px, 100%);
  margin:0 auto;
  text-align:center;
}

.brand-philosophy__label{
  margin:0 0 14px;
  font-family:var(--font-display);
  font-size:.72rem;
  letter-spacing:.18em;
  color:#9b856e;
  font-weight:600;
  text-transform:uppercase;
}

.brand-philosophy__title{
  margin:0 0 20px;
  font-family:var(--font-display);
  font-size:clamp(28px, 3vw, 44px);
  line-height:1.22;
  letter-spacing:.03em;
  font-weight:700;
  color:#17130f;
}

.brand-philosophy__text{
  width:min(720px, 100%);
  margin:0 auto;
  font-size:.95rem;
  line-height:2.05;
  color:#5e554d;
  text-wrap:pretty;
}

/* Timeline */
.historyArea--modern{
  width:min(1140px, calc(100% - 40px));
  margin:0 auto;
  padding:92px 0 120px;
  position:relative;
  background:none !important;
}

.historyArea--modern::before{
  content:"";
  position:absolute;
  top:0;
  bottom:0;
  left:50%;
  width:1px;
  background:linear-gradient(
    to bottom,
    rgba(0,0,0,0),
    rgba(0,0,0,.10) 8%,
    rgba(0,0,0,.10) 92%,
    rgba(0,0,0,0)
  );
  transform:translateX(-50%);
}

.history-item{
  position:relative;
  display:grid;
  grid-template-columns:1fr 1fr;
  margin-bottom:76px;
}

.history-item::before{
  content:"";
  position:absolute;
  top:34px;
  left:50%;
  width:12px;
  height:12px;
  border-radius:50%;
  background:#111;
  box-shadow:0 0 0 7px #f7f6f2;
  transform:translateX(-50%);
}

.history-item.is-right .history-card{
  grid-column:2;
  margin-left:46px;
}

.history-item.is-left .history-card{
  grid-column:1;
  margin-right:46px;
}

.history-card{
  background:linear-gradient(180deg, rgba(255,255,255,.96), rgba(250,248,244,.92));
  backdrop-filter:blur(10px);
  border:1px solid rgba(0,0,0,.09);
  border-radius:24px;
  padding:32px 34px 34px;
  box-shadow:0 24px 50px rgba(0,0,0,.08);
  opacity:0;
  transform:translateY(18px);
  transition:opacity .7s ease, transform .7s ease;
}

.history-card.is-inview,
.history-stat.is-inview{
  opacity:1;
  transform:none;
}

.history-year{
  margin:0 0 10px;
  font-size:11px;
  letter-spacing:.32em;
  text-transform:uppercase;
  color:rgba(0,0,0,.40);
  font-weight:700;
}

.history-heading{
  margin:0 0 18px;
  font-size:clamp(24px, 2.2vw, 34px);
  line-height:1.38;
  letter-spacing:.04em;
  font-weight:700;
  color:#111;
}

.history-card .tx{
  margin:0;
  font-size:14px;
  line-height:2.15;
  color:rgba(0,0,0,.76);
}

.history-card .im{
  margin:24px 0 0;
}

.history-card .im img{
  display:block;
  width:100%;
  height:auto;
  border-radius:18px;
  box-shadow:0 16px 30px rgba(0,0,0,.10);
}

/* Stats */
.history-stats{
  padding:0 20px 110px;
}

.history-stats__headline{
  width:min(920px, 100%);
  margin:0 auto 40px;
  text-align:center;
}

.history-stats__eyebrow{
  margin:0 0 12px;
  font-family:var(--font-display);
  font-size:.72rem;
  font-weight:600;
  letter-spacing:.18em;
  color:#9b856e;
  text-transform:uppercase;
}

.history-stats__title{
  margin:0;
  font-family:var(--font-display);
  font-size:clamp(26px, 3vw, 42px);
  line-height:1.2;
  letter-spacing:.02em;
  color:#17130f;
}

.history-stats__inner{
  width:min(1140px, 100%);
  margin:0 auto;
  display:grid;
  grid-template-columns:repeat(4, minmax(0, 1fr));
  gap:18px;
}

.history-stat{
  background:linear-gradient(180deg, #181818, #0f0f0f);
  color:#fff;
  border-radius:20px;
  padding:30px 22px;
  text-align:center;
  box-shadow:0 18px 34px rgba(0,0,0,.12);
  border:1px solid rgba(255,255,255,.06);
  opacity:0;
  transform:translateY(18px);
  transition:opacity .7s ease, transform .7s ease;
}

.history-stat__num{
  display:block;
  font-size:clamp(24px, 3vw, 40px);
  line-height:1.05;
  font-weight:700;
  letter-spacing:.05em;
}

.history-stat__label{
  display:block;
  margin-top:12px;
  font-size:11px;
  letter-spacing:.20em;
  text-transform:uppercase;
  opacity:.72;
  line-height:1.8;
}

/* Last section */
.historyLast{
  position:relative;
  overflow:hidden;
  background:
    linear-gradient(to bottom, rgba(0,0,0,.36), rgba(0,0,0,.66)),
    url(../img/Products/2020Tcra/PHOTO-2021-01-04-23-07-25.jpg) center center / cover no-repeat;
  padding:160px 20px;
}

.historyLast::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at 50% 30%, rgba(255,255,255,.12), transparent 42%),
    linear-gradient(to top, rgba(155,133,110,.10), rgba(155,133,110,0));
  pointer-events:none;
}

.historyLast__inner{
  position:relative;
  z-index:1;
  width:min(900px, 100%);
  margin:0 auto;
}

.historyLast .title{
  margin:0 0 24px;
  text-align:center;
  font-family:var(--font-display);
  font-size:clamp(26px, 3.2vw, 44px);
  letter-spacing:.10em;
  text-transform:uppercase;
  color:#fff;
}

.historyLast .tx{
  margin:0 auto;
  width:min(760px, 100%);
  text-align:center;
  line-height:2.25;
  font-size:14px;
  color:rgba(255,255,255,.92);
  text-wrap:pretty;
}

/* Responsive */
@media (max-width: 1200px){
  .creative-gear__grid{
    grid-template-columns:repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 900px){
  .historyArea--modern::before{
    left:18px;
    transform:none;
  }

  .history-item{
    grid-template-columns:1fr;
    margin-bottom:28px;
  }

  .history-item::before{
    left:18px;
    top:24px;
    transform:translateX(-50%);
  }

  .history-item.is-left .history-card,
  .history-item.is-right .history-card{
    grid-column:1;
    margin:0 0 0 40px;
  }

  .history-card{
    padding:24px 20px 24px;
    border-radius:18px;
  }

  .creative-gear{
    padding:90px 20px 50px;
  }

  .brand-philosophy__inner,
  .historyLast__inner{
    padding:0;
    border-radius:0;
  }

  .creative-gear__grid{
    grid-template-columns:repeat(2, minmax(0, 1fr));
  }

  .history-stats__inner{
    grid-template-columns:repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 600px){
  .about-hero{
    min-height:78vh;
    background-attachment:scroll;
  }

  .fixed-background .History_title,
  .fixed-background .History_titile{
    font-size:clamp(34px, 9vw, 54px);
    letter-spacing:.08em;
  }

  .about-hero__lead{
    font-size:15px;
    line-height:1.8;
  }

  .about-hero__sublead,
  .creative-gear__lead,
  .brand-philosophy__text,
  .history-card .tx,
  .historyLast .tx{
    font-size:13px;
    line-height:1.95;
  }

  .creative-gear__grid,
  .history-stats__inner{
    grid-template-columns:1fr;
  }

  .brand-philosophy{
    padding:68px 20px 28px;
  }

  .historyArea--modern{
    width:min(100%, calc(100% - 20px));
    padding:56px 0 82px;
  }

  .historyLast{
    padding:120px 20px;
  }
}
