/*BN-base*/

:root{--red:#c91520;--deep:#111;--text:#141414;--muted:#666;--line:#e7e2dd;--paper:#fbfaf8}
*{box-sizing:border-box}
html{
  scroll-behavior:smooth;
}
html{scroll-behavior:smooth}
body{margin:0;color:var(--text);background:var(--paper);font-family:-apple-system,BlinkMacSystemFont,"Hiragino Sans","Yu Gothic",Meiryo,sans-serif;line-height:1.85}
a{color:inherit;text-decoration:none}
img{display:block;max-width:100%}

/*BN-header*/

.site-header{
  position:fixed;
  z-index:30;
  top:0;
  left:0;
  width:100%;
  height:80px;
  padding:0 40px;
  display:flex;
  align-items:center;
  gap:28px;
  background:rgba(255,255,255,.82);
  backdrop-filter:blur(18px);
  -webkit-backdrop-filter:blur(18px);
  border-bottom:1px solid rgba(0,0,0,.06);
}

.brand{flex-shrink:0;margin-right:0;line-height:1.05}
.brand strong{display:block;font-size:26px;letter-spacing:.02em;font-weight:900}
.brand span{display:block;margin-top:5px;font-size:10px;font-weight:800;letter-spacing:.06em;color:#777}

.global-nav{margin-left:auto;display:flex;align-items:center;gap:32px;font-size:12px;font-weight:900;letter-spacing:.06em;white-space:nowrap}
.global-nav a{opacity:.82;transition:.25s}
.global-nav a:hover{color:var(--red);opacity:1}

.nav-contact{
  margin-left:20px;
  height:46px;
  min-width:118px;
  display:grid;
  place-items:center;
  border:1px solid var(--red);
  border-radius:999px;
  color:var(--red);
  background:rgba(255,255,255,.74);
  padding:0 22px;
  font-size:12px;
  font-weight:900;
  letter-spacing:.08em;
  transition:.25s;
}

.global-nav .nav-contact:hover{
  background:var(--red);
  color:#fff;
  opacity:1;
}

.hamburger{display:none;width:46px;height:46px;border:0;border-radius:50%;background:#111;color:#fff;font-size:22px}

/*BN-hero*/

.hero{position:relative;min-height:680px;height:88vh;display:grid;align-items:center;overflow:hidden;padding:130px 7vw 90px}
.hero-visual{
  position:absolute;
  inset:0;
  overflow:hidden;
}
.hero-visual:after{
content:"";
position:absolute;
inset:0;
background:
linear-gradient(
90deg,
rgba(251,250,248,.92) 0%,
rgba(251,250,248,.82) 42%,
rgba(251,250,248,.28) 74%,
rgba(0,0,0,.18) 100%
);
}
.hero-video{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}
.hero-content{position:relative;max-width:820px}
.hero h1{font-size:clamp(56px,7vw,100px);line-height:1.22;letter-spacing:.08em;font-weight:500;margin:0 0 36px;font-family:"Hiragino Mincho ProN","Yu Mincho",serif}
.hero p{font-size:16px;font-weight:700;margin:0}
.hero-buttons{display:flex;gap:22px;margin-top:42px}
.btn{min-width:240px;height:58px;border-radius:4px;display:inline-flex;align-items:center;justify-content:center;font-size:13px;font-weight:900}
.btn-red{background:var(--red);color:#fff}
.btn-light{background:rgba(255,255,255,.55);border:1px solid #888}

.scroll-label{position:absolute;left:34px;bottom:70px;writing-mode:vertical-rl;font-size:11px;font-weight:900;letter-spacing:.18em}
.scroll-label:after{content:"";display:block;width:1px;height:60px;background:#111;margin:14px auto 0}

/*BN-live*/

.section{padding:92px 7vw}
.live{background:#fff;display:grid;grid-template-columns:.9fr .75fr 1fr;gap:54px;align-items:center}
.section-kicker{font-size:14px;font-weight:900;letter-spacing:.08em;margin:0 0 6px}
.live h2{font-size:42px;line-height:1.1;margin:0 0 28px}
.live h2 span{color:var(--red)}
.lead{font-size:22px;font-weight:900;line-height:1.7}
.body-text{font-size:14px;font-weight:700;color:#555}
.more{display:inline-block;margin-top:20px;color:var(--red);font-size:13px;font-weight:900}

/* LIVE VALUE */

.live-value{
  background:#fff;
  display:block;
}

.live-value-head{
  max-width:980px;
  margin:0 auto 90px;
  text-align:center;
}

.live-value-head h2{
  font-size:clamp(34px,4.2vw,68px);
  line-height:1.45;
  letter-spacing:.06em;
  margin:18px auto 32px;
  font-family:"Hiragino Mincho ProN","Yu Mincho",serif;
  font-weight:500;
}

.live-value-head h2 span{
  display:inline-block;
  white-space:nowrap;
  color:#111;
}

.live-value-head p{
  font-size:15px;
  line-height:2;
  color:#555;
}

.live-value-flow{
  position:relative;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:44px;
  max-width:1120px;
  margin:0 auto 70px;
}

.live-value-flow::before{
  content:"";
  position:absolute;
  left:16%;
  right:16%;
  top:39%;
  height:2px;

  background:linear-gradient(
    90deg,
    transparent,
    #c91520,
    transparent
  );

  opacity:.45;

  transform:scaleX(0);
  transform-origin:center;
  transition:transform 1.1s cubic-bezier(.22,1,.36,1) .35s;
}

.live-value-flow.is-show::before{
  transform:scaleX(1);
}

.live-value-card{
  position:relative;
  z-index:2;
  text-align:center;
  opacity:0;
  transform:translateY(26px) scale(.96);
  transition:
    opacity .8s ease,
    transform .8s cubic-bezier(.22,1,.36,1);
}

.live-value-flow.is-show .live-value-card{
  opacity:1;
  transform:translateY(0) scale(1);
}

.live-value-card:nth-child(1){
  transition-delay:.15s;
}

.live-value-card:nth-child(2){
  transition-delay:.35s;
}

.live-value-card:nth-child(3){
  transition-delay:.55s;
}

.live-value-movie{
  width:min(260px,22vw);
  aspect-ratio:1/1;
  margin:0 auto 28px;
  border-radius:50%;
  overflow:hidden;
  background:#111;
  box-shadow:0 28px 70px rgba(0,0,0,.14);
}

.live-value-movie video{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.live-value-card:nth-child(2) .live-value-movie{
  transform:scale(.9);
}

.live-value-movie.is-muted video{
  filter:grayscale(1) brightness(.62);
}

.live-value-card p{
  font-size:18px;
  font-weight:800;
  letter-spacing:.08em;
  margin:0;
}

.live-value-goal{
  text-align:center;
  font-size:clamp(24px,3.2vw,42px);
  line-height:1.4;
  letter-spacing:.08em;
  color:#c91520;
  margin:0;
  font-family:"Hiragino Mincho ProN","Yu Mincho",serif;
  opacity:0;
  transform:translateY(22px);
  transition:opacity .9s ease .9s, transform .9s cubic-bezier(.22,1,.36,1) .9s;
}

.live-value-flow.is-show + .live-value-goal{
  opacity:1;
  transform:translateY(0);
}


/*BN-circle*/

.ratio{position:relative;min-height:320px;display:grid;place-items:center}
.circle{border-radius:50%;display:grid;place-items:center;text-align:center;background:#fff;box-shadow:0 18px 50px rgba(0,0,0,.08)}
.circle-main{width:270px;height:270px;border:22px solid #eee;border-top-color:var(--red);border-right-color:var(--red)}
.circle-sub{position:absolute;right:0;bottom:24px;width:150px;height:150px;border:12px solid #eee}
.circle b{font-size:76px;line-height:1;color:var(--red)}
.circle-sub b{font-size:40px;color:#111}
.circle small{font-size:.45em}
.circle span{font-size:14px;font-weight:900;color:var(--red)}
.circle-sub span{color:#111}
.device img{border-radius:20px;filter:drop-shadow(0 20px 40px rgba(0,0,0,.18))}

/*BN-section-heading*/

.section-heading.inline{display:flex;align-items:end;gap:28px;margin-bottom:24px}
.section-heading h2{font-size:36px;letter-spacing:.06em;line-height:1;margin:0}
.section-heading p{font-size:13px;font-weight:800;margin:0;color:#555}
.section-heading a{margin-left:auto;color:var(--red);font-size:13px;font-weight:900}

/*BN-field*/

.field-grid{display:grid;grid-template-columns:repeat(6,1fr);gap:12px}
.field-card{position:relative;border-radius:8px;overflow:hidden;background:#111;box-shadow:0 16px 34px rgba(0,0,0,.12)}
.field-card img{height:170px;width:100%;object-fit:cover;opacity:.82;transition:.3s}
.field-card:hover img{transform:scale(1.04);opacity:.95}
.field-card:after{content:"";position:absolute;inset:0;background:linear-gradient(180deg,transparent 30%,rgba(0,0,0,.72))}
.field-card span{position:absolute;z-index:1;left:0;right:0;bottom:18px;text-align:center;color:#fff;font-weight:900}

.field-overlay{
  position:absolute;
  left:0;
  right:0;
  bottom:18px;
  z-index:2;
  text-align:center;
  color:#fff;
}

.field-title{
  display:block;
  font-size:15px;
  font-weight:700;
}

.field-overlay small{
  display:block;
  margin-top:6px;
  font-size:11px;
  letter-spacing:.08em;
  opacity:.75;

  transform:translateY(10px);
  opacity:0;
  transition:.35s;
}

.field-card:hover .field-overlay small{
  transform:translateY(0);
  opacity:1;
}

/* WHY BIGNOSE */

.why-bignose{
display:grid;
grid-template-columns:1.5fr .5fr;
gap:80px;
align-items:center;
border-top:1px solid var(--line);
}

.why-copy{
  max-width:1000px;
}

.why-copy h2{
  max-width:1100px;
  font-size:clamp(34px,3.3vw,52px);
  line-height:1.5;
  letter-spacing:.04em;
  font-family:"Hiragino Mincho ProN","Yu Mincho",serif;
  font-weight:500;
  margin:20px 0 40px;
}

.why-copy p{
max-width:620px;
font-size:15px;
line-height:2;
color:#555;
}

.why-words{
display:flex;
flex-direction:column;
gap:18px;
}

.why-words .word{
  font-size:clamp(42px,5vw,82px);
  line-height:1;
  font-weight:900;
  letter-spacing:.04em;
  color:#d2d2d2;
  opacity:1;
}

.why-words{
  justify-content:center;
}


/*BN-story*/

.story{
  background:#fff;
  border-top:1px solid var(--line);
}

.center{
  text-align:center;
}

.story-heading h2{
  font-size:34px;
  letter-spacing:.12em;
}

.story-heading p{
  margin-top:6px;
  font-size:14px;
  color:#555;
}

.center-link{
  display:block;
  text-align:center;
  color:var(--red);
  font-size:13px;
  font-weight:900;
  margin-top:54px;
}

.story-path{
  position:relative;
  max-width:980px;
  margin:70px auto 0;
  padding:0 0 20px;
}

.story-path::before{
  content:"";
  position:absolute;
  left:50%;
  top:86px;
  bottom:110px;
  width:1px;
  background:linear-gradient(
    180deg,
    rgba(201,21,32,.15),
    rgba(201,21,32,.55),
    rgba(201,21,32,.15)
  );
  transform:translateX(-50%) scaleY(0);
  transform-origin:top;
  transition:transform 1.2s cubic-bezier(.22,1,.36,1);
}

.story-path.is-show::before{
  transform:translateX(-50%) scaleY(1);
}

.story-start,
.story-now{
  text-align:center;
  position:relative;
  z-index:2;
}

.story-start span,
.story-now span{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:96px;
  height:40px;
  padding:0 18px;
  border-radius:999px;
  background:#111;
  color:#fff;
  font-size:13px;
  font-weight:900;
  letter-spacing:.22em;
}

.story-start h3,
.story-now h3{
  margin:22px 0 0;
  font-size:clamp(30px,4vw,56px);
  line-height:1.35;
  font-family:"Hiragino Mincho ProN","Yu Mincho",serif;
  font-weight:500;
  letter-spacing:.06em;
}

.story-start h3{
  font-size:clamp(30px,3.5vw,52px);
}

.story-now h3{
  font-size:clamp(40px,4.5vw,64px);
}

.story-steps{
  display:grid;
  grid-template-columns:1fr;
  gap:16px;
  margin:50px auto;
  max-width:620px;
}

.story-steps article{
  position:relative;
  z-index:2;
  background:#fff;
  border:1px solid var(--line);
  border-radius:999px;
  padding:18px 34px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  box-shadow:0 18px 46px rgba(0,0,0,.04);
  opacity:0;
  transform:translateY(22px);
  transition:
    opacity .7s ease,
    transform .7s cubic-bezier(.22,1,.36,1);
}

.story-path.is-show .story-steps article{
  opacity:1;
  transform:translateY(0);
}

.story-path.is-show .story-steps article:nth-child(1){transition-delay:.15s;}
.story-path.is-show .story-steps article:nth-child(2){transition-delay:.28s;}
.story-path.is-show .story-steps article:nth-child(3){transition-delay:.41s;}
.story-path.is-show .story-steps article:nth-child(4){transition-delay:.54s;}
.story-path.is-show .story-steps article:nth-child(5){transition-delay:.67s;}

.story-steps b{
  font-size:15px;
  letter-spacing:.08em;
}

.story-steps span{
  font-size:13px;
  font-weight:800;
  color:#666;
}

.story-now{
  margin-top:30px;
}

.story-now p{
  margin:22px 0 0;
  font-size:15px;
  line-height:2;
  color:#555;
}


/*BN-thinking-service*/



.thinking-service{display:grid;grid-template-columns:1.25fr .85fr .9fr;border-top:1px solid var(--line);background:#fff}
.block{padding:48px 3vw;border-right:1px solid var(--line)}
.block:last-child{border-right:0}
.block-heading{margin-bottom:24px}
.block-heading h2{font-size:32px;line-height:1;margin:0 0 8px}
.block-heading p{font-size:13px;font-weight:800;color:#555;margin:0}
.block-heading a{float:right;color:var(--red);font-size:13px;font-weight:900}

.article-list{display:grid;grid-template-columns:repeat(3,1fr);gap:16px}
.article-list article{display:flex;flex-direction:column;}
.article-list img{ border-radius:6px;height:130px;width:100%;object-fit:cover;}
.article-list small{display:inline-block;background:#0068b7;color:#fff;border-radius:999px;padding:2px 8px;font-size:10px;font-weight:900;margin-top:10px}
.article-list h3{font-size:13px;line-height:1.55;margin:6px 0;font-weight:900}
.article-list time{font-size:11px;color:#777}

.message-inner{display:block;grid-template-columns:150px 1fr;gap:24px}
.message img{border-radius:8px;height:205px;width:150px;object-fit:cover}
.message h3{font-size:20px;line-height:1.6;margin:0 0 14px}
.message p{font-size:13px;font-weight:700}

.service-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:18px}
.service-grid a{position:relative;min-height:76px;border:1px solid var(--line);border-radius:8px;display:grid;place-items:center;text-align:center;font-size:12px;font-weight:900;background:#fff}
.service-grid span{position:absolute;top:-10px;background:var(--red);color:#fff;border-radius:999px;padding:1px 7px;font-size:10px}

.service-grid a:first-child{
  background:#111;
  color:#fff;
  border-color:#111;
}

.service-grid a:first-child span{
  background:var(--red);
  color:#fff;
}

.message{
  background:#fbfaf8;
}

.message h3{
  font-family:"Hiragino Mincho ProN","Yu Mincho",serif;
  font-weight:500;
  font-size:clamp(22px,2vw,30px);
  line-height:1.55;
  letter-spacing:.04em;
}

.message p{
  line-height:1.9;
  color:#444;
}

.message{
  background:#fbfaf8;
}

.message h3{
  font-size:clamp(26px,2.2vw,34px);
}


/*BN-contact*/

.contact{
  background:#111;
  color:#fff;
  text-align:center;
  padding:140px 7vw;
  border-top:1px solid rgba(255,255,255,.08);
}

.contact-note{
  max-width:1200px;
  margin:0 auto;
  padding:0;
}

.contact-note .section-kicker{
  color:rgba(255,255,255,.55);
}

.contact-note h2{
  font-size:clamp(34px,4vw,68px);
  line-height:1.5;
  letter-spacing:.06em;
  margin:20px 0 34px;
  font-family:"Hiragino Mincho ProN","Yu Mincho",serif;
  font-weight:500;
}


.contact-note p{
  font-size:15px;
  line-height:2;
  color:rgba(255,255,255,.72);
  margin:0;
}

.contact-actions{
  display:flex;
  justify-content:center;
  gap:22px;
  margin-top:64px;
}

.contact-line,
.contact-mail{
  min-width:300px;
  min-height:80px;
  padding:18px 34px;
  border-radius:999px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  font-size:15px;
  font-weight:900;
  transition:.3s;
}

.contact-line{
  background:#06C755;
  color:#fff;
}

.contact-mail{
  background:var(--red);
  color:#fff;
}

.contact-line small,
.contact-mail small{
  display:block;
  margin-top:6px;
  font-size:11px;
  font-weight:700;
  color:rgba(255,255,255,.72);
}

.contact-line:hover,
.contact-mail:hover{
  transform:translateY(-4px);
  filter:brightness(1.05);
}




.contact-note{
  margin-top:28px;
  text-align:center;
}

.contact-note p{
  margin:0 0 14px;
  font-size:14px;
  line-height:1.8;
  color:#666;
}

.sales-link{
  display:inline-block;
  padding:10px 24px;
  border:1px solid #bbb;
  border-radius:999px;
  font-size:14px;
  font-weight:600;
  color:#666;
  background:#fff;
  text-decoration:none;
  transition:.25s;
}

.sales-link:hover{
  color:#c91520;
  border-color:#c91520;
  background:#fff7f7;
}





/*BN-footer*/

.footer{height:70px;display:flex;align-items:center;gap:34px;padding:0 7vw;background:#fff;border-top:1px solid var(--line);font-size:12px}
.footer strong{font-size:26px;margin-right:30px}
.footer nav{display:flex;gap:28px;color:#555}
.footer small{margin-left:auto;color:#777}

/* BN-tablet */

@media (max-width:1200px){
  .global-nav{gap:22px}
  .live{grid-template-columns:1fr 320px 1fr;gap:34px}
  .thinking-service{grid-template-columns:1fr}
  .block{border-right:0;border-bottom:1px solid var(--line)}
  .message-inner{grid-template-columns:180px 1fr}
  .message img{width:180px;height:220px}
}

/*BN-smartphone*/

@media (max-width:960px){
  .site-header{
    height:66px;
    padding:0 20px;
    background:rgba(255,255,255,.9);
    backdrop-filter:blur(12px);
    -webkit-backdrop-filter:blur(12px);
  }

.global-nav{
  display:none;
}
	
  .hamburger{
    display:grid;
    place-items:center;
    margin-left:auto;
  }

  .brand strong{font-size:22px}
  .brand span{font-size:9px}

  .hero{
  height:auto;
  min-height:680px;
  padding:100px 24px 60px;
}

  .hero-visual{
  background-position:75% top;
}
  .hero-visual:after{background:linear-gradient(180deg,rgba(251,250,248,.98) 0%,rgba(251,250,248,.88) 55%,rgba(251,250,248,.26) 100%)}
  .hero h1{font-size:52px;line-height:1.18}
  .hero p{font-size:14px}
  .hero-buttons{flex-direction:column;align-items:flex-start}
  .btn{min-width:230px}
  .scroll-label{display:none}

  .section{padding:64px 24px}

  .live{
    grid-template-columns:1fr;
    gap:30px;
  }

  .live h2{font-size:36px}

  .ratio{
    place-items:start;
    min-height:260px;
  }

  .circle-main{
    width:225px;
    height:225px;
  }

  .circle-main b{font-size:62px}

  .circle-sub{
    right:auto;
    left:170px;
    bottom:0;
  }

  .section-heading.inline{display:block}
  .section-heading a{display:inline-block;margin:12px 0 0}

  .field-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .field-card img{height:150px}

  .why-asset{
    grid-template-columns:1fr;
  }

  .panel{
    border-right:0;
    border-bottom:1px solid var(--line);
    padding:48px 24px;
  }

  .why-steps{
    grid-template-columns:1fr;
  }

  .why-steps strong{display:none}
  .asset-flow i{display:none}

  .story-line{
    grid-template-columns:1fr;
    gap:20px;
  }

  .story-line:before{
    left:10px;
    right:auto;
    top:0;
    bottom:0;
    width:2px;
    height:auto;
  }

  .story-line article{
    text-align:left;
    padding-left:44px;
  }

  .story-line article:after{
    left:10px;
    top:4px;
  }

  .story-line span{padding-bottom:0}

  .thinking-service{
    grid-template-columns:1fr;
  }

  .block{
    border-right:0;
    border-bottom:1px solid var(--line);
    padding:48px 24px;
  }

  .article-list{
    grid-template-columns:1fr;
  }

  .article-list img{
    height:auto;
  }

  .message-inner{
    display:block;
  }

  .message img{
    width:100%;
    height:auto;
    margin-bottom:20px;
  }

  .service-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .contact{
    grid-template-columns:1fr;
  }

  .contact-line,
  .contact-mail{
    min-height:110px;
    padding:26px 20px;
  }

  .footer{
    height:auto;
    align-items:flex-start;
    flex-direction:column;
    padding:28px 24px;
  }

  .footer nav{flex-wrap:wrap}
  .footer small{margin-left:0}
	
.live-value-head{
  margin-bottom:58px;
}


.live-value-head p{
  font-size:14px;
}

.live-value-flow{
  display:block;
  max-width:100%;
  margin-bottom:58px;
}

.live-value-flow::before{
  display:none;
}

.live-value-card{
  margin-bottom:46px;
}

.live-value-card:last-child{
  margin-bottom:0;
}

.live-value-movie{
  width:min(230px,68vw);
  margin-bottom:20px;
}

.live-value-card p{
  font-size:16px;
}

.live-value-goal{
  font-size:clamp(24px,7vw,36px);
}
	
  .live-value-head h2{
    font-size:clamp(30px,8.5vw,46px);
    line-height:1.42;
  }
	
}

/*BN-mobile-nav*/

@media (max-width:960px){
	
  .global-nav.is-open{
    display:flex;
    position:fixed;
    top:66px;
    left:0;
    width:100%;
    padding:24px;
    background:rgba(255,255,255,.96);
    backdrop-filter:blur(12px);
    -webkit-backdrop-filter:blur(12px);

    flex-direction:column;
    align-items:flex-start;
    gap:18px;

    border-top:1px solid var(--line);
    border-bottom:1px solid var(--line);

    z-index:999;
  }

}

/*BN-backtotop*/

.back-to-top{
  position:fixed;
  right:24px;
  bottom:24px;
  width:52px;
  height:52px;

  display:grid;
  place-items:center;

  border-radius:50%;

  background:var(--red);
  color:#fff;

  font-size:22px;
  font-weight:900;

  box-shadow:0 10px 25px rgba(0,0,0,.18);

  z-index:999;

  transition:.25s;
}

.back-to-top:hover{
  transform:translateY(-3px);
  background:#a90f18;
  color:#fff;
}

/*BN-backtotop-smartphone*/

@media (max-width:960px){

  .back-to-top{
    right:18px;
    bottom:18px;
    width:48px;
    height:48px;
    font-size:20px;
  }

}

/* =========================
SMARTPHONE FINAL FIX
========================= */

@media (max-width:960px){

  html,
  body{
    width:100%;
    overflow-x:hidden;
  }

  .live-value-head{
    max-width:100%;
    overflow:hidden;
  }

  .live-value-head h2{
    font-size:clamp(28px,8vw,40px);
    line-height:1.55;
    letter-spacing:.03em;
    max-width:100%;
  }

  .live-value-head h2 span{
    display:inline !important;
    white-space:normal !important;
  }

  .why-bignose{
    grid-template-columns:1fr;
    gap:36px;
  }

  .why-words{
    align-items:flex-start;
  }

  .why-words .word{
    font-size:clamp(40px,14vw,62px);
  }

  .contact-note h2{
    white-space:normal;
    word-break:keep-all;
  }

  .contact-actions{
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:16px;
    width:100%;
  }

  .contact-line,
  .contact-mail{
    min-width:0 !important;
    width:100%;
    max-width:280px;
    box-sizing:border-box;
  }

}
/* =========================
FINAL OVERRIDE - INDEX MOBILE
========================= */
@media (max-width:960px){

  .contact{
    padding:110px 24px;
    overflow:hidden;
  }

  .contact-note{
    max-width:100%;
  }

  .contact-note h2{
    font-size:clamp(28px,7.2vw,34px) !important;
    line-height:1.65;
    letter-spacing:.02em;
    white-space:normal !important;
    word-break:normal !important;
    overflow-wrap:anywhere;
  }

  .contact-actions{
    display:flex !important;
    flex-direction:column !important;
    align-items:center !important;
    justify-content:center !important;
    gap:16px !important;
    width:100% !important;
    max-width:100% !important;
  }

  .contact-line,
  .contact-mail{
    width:100% !important;
    max-width:280px !important;
    min-width:0 !important;
    box-sizing:border-box !important;
  }

}
